Closed kanginthaya closed 4 years ago
Hi,
Great package, I am using this for my master thesis. It's just fantastic to use. Just a small problem however - plt.style.use(['science','grid']) seems not to work for me. Any suggestions on how to get it working?
plt.style.use(['science','grid'])
I fixed it by alternately using -
ax.grid(linestyle='--', alpha=0.5)
It seems that the legend part without grid.
The latest commit provide the ['science', 'grid'] support. Please use the latest commit.
Hi,
Great package, I am using this for my master thesis. It's just fantastic to use. Just a small problem however -
plt.style.use(['science','grid'])
seems not to work for me. Any suggestions on how to get it working?