generate functionThu, 20 Apr 2023
show a picture in existing csv file and save.
import matplotlib.pyplot as plt import pandas as pd # read the file df = pd.read_csv("sample.csv") df.head() # plot the content df.plot() plt.ylabel("some numbers") plt.show()
Python
Generate More