Read Time from the column of CSV file for plotting purpose

1 visualización (últimos 30 días)
Hello
Please find the attached csv, here column 1 shows the time and column 2 shows spo2 data recorded at that point of time. I am trying to read this csv file and plot this with
column 1 (time data) as x-axis and column 2 (spo2 data) as y-axis.
Please suggest me appropriate code for the execution.

Respuesta aceptada

Mohammad Sami
Mohammad Sami el 1 de Feb. de 2020
readtable should work just fine with your data.
a = readtable('Moxy.csv');
plot(a.hh_mm_ss,a.SmO2Live)

Más respuestas (0)

Categorías

Más información sobre Data Import and Analysis en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by