plot the month and year in X-axis

4 vues (au cours des 30 derniers jours)
thomas gisiri
thomas gisiri le 31 Juil 2020
Commenté : thomas gisiri le 1 Août 2020
Hi everyone,
I want to plot timeseries data in Matlab i have attached the data nature of the data. but some month data are missing and i want the missing month data to see..
can anyone help me the i Can plot the data.
  1 commentaire
thomas gisiri
thomas gisiri le 1 Août 2020
thanks a lot

Connectez-vous pour commenter.

Réponse acceptée

Serhii Tetora
Serhii Tetora le 31 Juil 2020
Modifié(e) : Serhii Tetora le 31 Juil 2020
clear;clc;close all
tab = xlsread('data_final');
Date = datetime(tab(:,1),tab(:,2),1);
data = tab(:,3);
[Date,I] = unique(Date);
date_int = Date(1):calmonths(1):Date(end);
data_int = interp1(Date,data(I),date_int);
plot(Date,data(I))
grid on; hold on
plot(date_int,data_int,'--')
legend('Original','Interpolated')
  1 commentaire
thomas gisiri
thomas gisiri le 1 Août 2020
thanks alot its working now.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Time Series Events dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by