Screen Link: <-https://app.dataquest.io/m/147/improving-plot-aesthetics/6/hiding-tick-marks-->
My Code:
fig,ax=plt.subplots()
ax.plot(women_degrees["Year"],women_degrees["Biology"],color="blue",label="Women")
ax.plot(women_degrees["Year"],100-women_degrees["Biology"],color="red",label="Men")
ax.tick_params(bottom="off", top="off", left="off", right="off")
#ax.set_title("Percentage of Biology Degrees Awarded By Gender")
ax.legend(loc="upper right")
What I expected to happen:
Ticks are not disappearing when I run it on the jupiter notebook.Kindly help
What actually happened:
Replace this line with the output/error
Actual O/P of the plot should be without any external ticks across all the axis