Reputation: 121
I'd like to plot my outcome like this with secondary axis.
My outcome now is:
Upvotes: 0
Views: 96
Reputation: 121
I just found out that
from matplotlib import style
style.use('fivethirtyeight')
is what I want.
Upvotes: 0
Reputation: 1275
Do you want gridlines? If so, you'd just have another line of code similar to this
plt.grid(b=True)
https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.grid.html
Upvotes: 2