I have a dataframe df with 2 columns I want to plot together and days as index:
| col1 | col2 | col3 | ...
2020-01-01 | 1 | 300000 | ...
2020-01-02 | 1000 | 600000 | ...
2020-01-03 | 3000 | 50000 | ...
Plotting col1 + col2 via
df[["col1", "col2"]].plot()
shows values from 0 till 1.0 and at the top "1e6" like in this example: https://i.sstatic.net/tJjgX.png
I want the full value range on the y-axis and no scientific notation. How can I do this via pandas .plot() or matplotlib?