I have a pandas data frame my_df, where I can find the mean(), median(), mode() of a given column:
my_df[\'field_A\'].mean() my_df[\'field_A\'].median() my_d
I figured out below would work:
my_df.dropna().quantile([0.0, .9])