Borrar filtros
Borrar filtros

How to plot a timeseries from excel table

69 visualizaciones (últimos 30 días)
Elliot Jenkins
Elliot Jenkins el 15 de Mzo. de 2023
Respondida: Amit Dhakite el 16 de Mzo. de 2023
Hi there,
I want to plot a time series of a two column table from excel. The date format is 'mm-yyyy'. I keep getting an invalid plot argument error. I have attached the table I am trying to plot below.
Thank you

Respuestas (1)

Amit Dhakite
Amit Dhakite el 16 de Mzo. de 2023
Hello Elliot,
Based on your description, it seems that you are trying to plot a timeseries from an Excel table, but are encountering an error due to the "mm_yyyy" column being of type "cell". Since a cell type is not a valid input for the plot function, we need to convert it to a proper timeseries type.
To resolve this issue, we can use the readtable function to read the data from the Excel sheet, and then convert the "mm_yyyy" column to a "timeseries" type using the datetime function with the appropriate input format. Once this is done, we can plot the data using the plot function.
Here is the updated code to perform the conversion and plotting:
% Reading the data from excel sheet
data = readtable('SGIdata.xlsx');
% Converting the "mm_yyyy" column from a "cell" type to a "timeseries" type
data.mm_yyyy = datetime(data.mm_yyyy, 'InputFormat', 'mm-yyyy');
% Plotting the data
plot(data.mm_yyyy, data.SGI);
To know more about the functions used above, kindly refer to the following links:
  1. readtable(): https://www.mathworks.com/help/matlab/ref/readtable.html
  2. datetime(): https://www.mathworks.com/help/matlab/ref/datetime.html
  3. plot(): https://www.mathworks.com/help/matlab/ref/plot.html

Categorías

Más información sobre Data Distribution Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by