I have created 6 different dataframes that eliminate the outliers of their own original data frames. Now, I\'m trying to plot all of the dataframes that eliminate the outlie
You need to use the ax parameter in pandas.dataframe.plot.
ax
Use on the first df.plot to grab a handle on that axes:
ax = newdf.plot()
then on subsequent plots use the ax parameter.
newdf2.plot(ax=ax) ... newdf5.plot(ax=ax)