I want plot the graphs one by one from the dataframe with FOR operator.
names_list = df.columns.tolist()
for name in names_list:
df[name].plot(figsize=(25, 5))
This code is no good. The graphs are depicted in one figure, but should be in different ones.

How can I get multiple charts instead of one?
