python plot frequency of column values

41

python plot frequency of column values -

# Plot frequency
my_df['my_var'].value_counts().plot.bar()

# Add column freq to the DF
df['freq']=df.groupby(by='Name')['Name'].transform('count')

Comments

Submit
0 Comments