I have a little more of a basic question, rather than complex code, but it still annoys me. I just did the aesthetics first part, finishing with this 147-8 part. Part of this mission is using the following code for ticks while creating the code:
ax.tick_params(bottom="off", top="off", left="off", right="off")
What I expected to happen:
When creating the DQ graph, it is as it should be - clean.
What actually happened:
When using my locally installed Jupyter - it doesn’t remove the ticks at all. I tried using the code:
ax.set_xticks([])
but this not only removed the ticks, but the labelling of the ticks, which is TOO clean.
Can anyone help - why is my local Jupyter reacting diferent to the DQ online version of Jupyter?