diff --git a/notes/2024-09-26.md b/notes/2024-09-26.md index 3f77508..47c87c8 100644 --- a/notes/2024-09-26.md +++ b/notes/2024-09-26.md @@ -435,7 +435,12 @@ pd.cut(coffee_df_bags['Number.of.Bags'],bins=3).sample(10) by default, it makes bins of equal size, meaning the range of values. This is not good based on what we noted above. Most will be in one label +```{note} +I would like to show a histogram here, but for somereason it broke. The output is hidden for now. +``` + ```{code-cell} ipython3 +:tags:["hide-output"] pd.cut(coffee_df_bags['Number.of.Bags'],bins=3).hist() ```