diadia

興味があることをやってみる。自分のメモを残しておきます。

matplotlib

import pandas as pd
import matplotlib.pyplot as plt

df = pd.read_csv('demo_test.csv')
#print(df)
#print(dir(df))
print(len(df))
print(type(len(df)))
plt.plot(range(0,len(df)),df['timestamp'],label="test")
plt.show()