Open
Description
Hello,
I use the Jupyter Notebook with my own data. When running the following part of the code
def normcdf(x):
return norm.cdf(x, x.mean(), x.std())
term_freq_df['eight_precision_normcdf'] = normcdf(term_freq_df['eight_precision'])
term_freq_df['eight_freq_pct_normcdf'] = normcdf(term_freq_df['eight_freq_pct'])
term_freq_df['eight_scaled_f_score'] = hmean([term_freq_df['eight_precision_normcdf'], term_freq_df['eight_freq_pct_normcdf']])
term_freq_df.sort_values(by='eight_scaled_f_score', ascending=False).iloc[:10]
I get the following error
The column categories run from 'zero' to 'eight'. Any suggestion to overcome this problem is welcome
Metadata
Metadata
Assignees
Labels
No labels