I am looking at the below example with parasite axis https://matplotlib.org/2.0.2/examples/axes_grid/demo_parasite_axes2.html
How do I remove both the xticks and yticks from that example?
I am aware of plt.tick_params
but that didn't work for me.
i.e. I tried
plt.tick_params(axis='x',which='both',bottom=False,top=False)
but that didnt work. Could someone help please?