I need two plots on the same figure. One of them is described by a Dataframe and the other by numpy arrays. Is there a way to plot them on the same figure without converting any of them ?
I know how to make multiple plots if all are numpy arrays or if all are Dataframes, but I don't know what to do when they have mixed types. For example, the following does not work:
ax=plt.plot(xv,yv)
df.plot.scatter(x='Column1',y='Column2',ax=ax)
xv, 'yv' anddf? It makes life much easier