Created
October 28, 2019 19:21
-
-
Save kinkerl/551bd4bc5fa969c7dfba8864f79fcd4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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