How to plot date and time data on the same axis?
Mostrar comentarios más antiguos
I have an excel file that has a column for date, time and pollution levels. I want to plot the date AND time on the x-axis and the pollution levels on the y-axis, but I do not know how to combine the two columns in matlab or how to then properly put these on the x-axis. Any help would be much appreciated. Please see attached excel file that I am using. Thanks,
3 comentarios
Walter Roberson
el 23 de Ag. de 2018
Which MATLAB release? It makes a difference for how easy it is to handle the times.
Noah Poole
el 23 de Ag. de 2018
Haritha
el 23 de Ag. de 2018
Try this, https://in.mathworks.com/help/matlab/creating_plots/combine-multiple-plots.html
Respuestas (1)
Walter Roberson
el 23 de Ag. de 2018
filename = 'brisbanecbd-aq-2010.csv';
data = readtable(filename);
x = data{:,3};
pm10 = data{:,8};
plot(x, pm10);
Categorías
Más información sobre Dates and Time en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!