You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting n_extreme_obs = N with N != 5 does not change the header "Minimum N values" or "Maximum N values" in html report, however the number of listed extreme obs is correct.
import pandas as pd
import pandas_profiling as pp
df = pd.DataFrame(
np.random.rand(20, 2),
columns=['a', 'b']
)
profile = df.profile_report(n_extreme_obs=7)
display(profile)
Version information:
Python version: 3.7.3
Environment: JupyterLab (local)
pandas: 0.25.1
pandas-profiling: 2.3.0
The text was updated successfully, but these errors were encountered:
Setting n_extreme_obs = N with N != 5 does not change the header "Minimum N values" or "Maximum N values" in html report, however the number of listed extreme obs is correct.
Version information:
The text was updated successfully, but these errors were encountered: