I am using jupyter notebook
for simple plotting tasks as the following.
%matplotlib inline
plt.rcParams["figure.figsize"] = (12, 8)
plt.style.use("bmh")
I am getting a plot of the following form. How can remove the background silver color (we can keep the grid but I can also turn them off using plt. grid(False)
) to white and change the border color of the plot to black?