Note
Click here to download the full example code
Plotting data from an CSV file (script)¶
Example plot of ‘PULSE_BPM’ and ‘SPO2_PCT’ from a CSV file.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
#Remember to Change Path
df = pd.read_csv(r"D:\FILES\Desktop\Dissertation ICL\OUCRU\01NVa_Dengue\Adults\01NVa-003-2001\PPG\01NVa-003-2001 Smartcare.csv")
#visualising Data
df
#Plotting Data
ax = plt.gca()
df[:10000].plot(kind='line',x='TIMESTAMP_MS',y='PULSE_BPM',ax=ax)
df[:10000].plot(kind='line',x='TIMESTAMP_MS',y='SPO2_PCT', color='red', ax=ax)
plt.show()
|
Total running time of the script: ( 0 minutes 0.000 seconds)