Skip to content

Instantly share code, notes, and snippets.

@kinkerl
Created October 28, 2019 19:21
Show Gist options
  • Save kinkerl/551bd4bc5fa969c7dfba8864f79fcd4f to your computer and use it in GitHub Desktop.
Save kinkerl/551bd4bc5fa969c7dfba8864f79fcd4f to your computer and use it in GitHub Desktop.
# pip install pandas matplotlib
import pandas
df1 = pandas.read_csv("OMDAQ-XL _10_24_2019 12_22_21_PM.csv")
print(df1[:5])
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
plt.plot(df1['Date&Time'],df1['T_Housing'])
plt.plot(df1['Date&Time'],df1['T_D44'])
plt.plot(df1['Date&Time'],df1['S1'])
plt.plot(df1['Date&Time'],df1['T_Amb'])
plt.plot(df1['Date&Time'],df1['V_In'])
plt.savefig("mygraph.png")
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment