univariate time series prediction with artificial neural network

1 vue (au cours des 30 derniers jours)
Osman Yakubu
Osman Yakubu le 26 Déc 2018
I am new to MATLAB and time series and need help. I have a two column data of electricity consumption (Date, Consumption in kWd). I need a MATLAB code or procedure to enable me predict consumptions. I have 154 days of data and I want to prediction each consumption and plot it on a graph (actual, predicted) and calculate the root mean squared error. Thanks.
  3 commentaires
Osman Yakubu
Osman Yakubu le 27 Déc 2018
Modifié(e) : Osman Yakubu le 28 Déc 2018
Thanks for your reply, it was really helpful. How do I plot the predicted and actual values? I also need the RMSE.
Please help.
Thanks
Kevin Chng
Kevin Chng le 4 Jan 2019
Modifié(e) : madhan ravi le 4 Jan 2019
Sorry for my late reply,
(Actual - Predicted) % Errors
(Actual - Predicted).^2 % Squared Error
mean((Actual - Predicted).^2) % Mean Squared Error
RMSE = sqrt(mean((Actual - Predicted).^2)); % Root Mean Squared Error

Connectez-vous pour commenter.

Réponse acceptée

Kevin Chng
Kevin Chng le 4 Jan 2019
refer to the link : https://www.mathworks.com/help/deeplearning/ref/narnet.html. Replace the dataset with your dataset.
For Calculating RMSE,
RMSE = sqrt(mean((Actual - Predicted).^2));
  1 commentaire
Parvathy ravindranath
Parvathy ravindranath le 25 Déc 2020
Can any one help me solve timeforcasting using deep learning in OCTAVE

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Sequence and Numeric Feature Data Workflows 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