Hello,
I am trying to summarize a GroupedDataFrame:
df2 = CSV.read(raw"_Q\Test.csv");
gd = groupby(df2, :Age_Catg)
print(
combine(gd, nrow
,:Income => mean
,:Income => middle
,:Income => quantile
)
)
The issue is that I can’t specific the quantile I want (e.g. quantile(v, 0.1))
The code currently always print 5 quantile levels [0, 0.25, 0.5, 0.75, 1] and I can’t find the syntax to customize it
thank you,