I have a function that reads a CSV file and outputs it to graphs. His window looks like this
As you can see, the names of the graphs Filter and step2 are on the left and all the others are on the right. This does not suit me. Here is my function
def Grahp2():
df = pd.read_csv('Dataset.csv',)
names = ['P', 'Filter', 'Answers', 'step','step2','Comulative', 'Delta_ema','ComulativePOC', 'Delta_P', 'Sum','SpeedUp', 'M' ]
features = df[names]
features.index = df['Time']
axs = features.plot(subplots=True)
cursor = MultiCursor(axs[1].get_figure().canvas, axs)
plt.subplots_adjust(wspace=0.19, hspace=0.05, top=0.99, right=0.988, bottom=0.052, left=0.055)
plt.show()
Is it possible just in my method to make sure that all the names are in one particular place?
