Support Vector Machine Regression Predict
4 ビュー (過去 30 日間)
表示 古いコメント
I have this Airlines dataset. I used 11 yers for training and 1 for testing.
Once i've chosen and trained the model (using fitrsvm, predict...), suppose that i need to predict the next 3 months how can i do?


Probably it's a dumb question, but i can't figure out.
Thanks.
0 件のコメント
回答 (1 件)
Iuliu Ardelean
2021 年 3 月 2 日
編集済み: Iuliu Ardelean
2021 年 3 月 2 日
Hey
You could try:
numTrainPoints = 100; % Let's say you want 100 train points
dtrain = d(1:numTrainPoints, 1:(A-af); % select first 100 points for training
model = fitrsvm(dtrain, dresponse); % fit model to train data
dtest = d(numTrainPoints:end, 1:(A-af); % select the rest for testing
predictedPassengers = predict(model, dtest); % test
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!