I am creating a figure with 3 subplots, and was wondering if there is any way of removing the frame around them, while keeping the axes in place?
Try plt.box(on=None) It removed only the bounding box (frame) around plot, which is what I was trying to do.
plt.box(on=None)
plt.axis('off') removed tick labels and the bounding box, which wasn't what I was looking to accomplish.
plt.axis('off')