Hi,
I would love some feedback on this project where I was exploring some data visualization techniques. In particular I would like to know if it possible to somehow assign the Axes object returned when using the various pandas.DataFrame.plot
methods to a specific matplotlib.figure
object? To put it another way: can I create a figure object with subplots using:
fig, axarr = matplotlib.pyplot.subplots(3, 1)
and then assign my Axes object returned from say pandas.DataFrame.plot.hexbin()
to one of the axes in axarr above?
Thanks!
Tom
Notebook file attached.Visualizing earnings based on college majors.ipynb (616.9 KB)
Click here to view the jupyter notebook file in a new tab