Hi <@U06HEUYHE05>, If I have a Monthly data, the d...
# neural-forecast
m
Hi @Marco, If I have a Monthly data, the dates start from 1st day of the month and I am doing monthly Prediction using Neural forecast, Now I noticed that my predicted values are end of the Month dates (Last Day of the Month) after
model.predict
, and here the issue happens. My
y
column is NaN after cross validation function. How do i resolve this issue?
m
You can convert your date column to have the last day of the month instead of the first day of the month.
j
You can also set
freq='MS'
👍 3
m
This works great thanks @José Morales