I wrote the following code to create a bar plot:
ords_prods_merge['order_dow'].value_counts().plot.bar()
The output is a barchart which shows e.g. le6 at the y axis. I want "normal" numbers there, e.g. 6000000.
Can I write something into my line of code to make that happen?
Thanks!