I have a csv file named as data.csv and it contain [10000 rows x 1 columns] and i read the data as
a=read_csv("data.csv")
print(a)
dt
0 3.5257,3.5257,3.5257,3.5257,3.5257,3.5257,3.52...
1 3.3414,3.3414,3.3414,3.3414,3.3414,3.3414,3.34...
2 3.5722,3.5722,3.5722,3.5722,3.5722,3.5722,3.57...
.....
Now I want to plot each indexed rows in loop and want to save each plot in the name of index values . For example
i need to produce 0.jpg by using o indexed values ----> 3.5257,3.5257,3.5257,3.5257,3.5257,3.5257,3.52...
similarly 1.jpg by using 1 index values----> 3.3414,3.3414,3.3414,3.3414,3.3414,3.3414,3.34...
My code
a=read_csv("data.csv")
print(a)
for data in a:
plt.plot(data)
Hope experts will help me providing the answer.Thanks.

