From the documentation above, the function create_lagged_component_names is supposed to return the names of the target columns. However, when I run the function below, I get back an empty list:
This what my target_fit, past_cov_fit and future_cov_fit looks like:
As far as I understand the last n (forecast_horizon) names in lagged_data_component_names[0][-forecast_horizon:] should be equivalent to the output in lagged_data_component_names[1]?
Since my target name is edm_power_feed_in_diffand my output_chunk_length=3, I would expect create_lagged_component_names[1] to return[edm_power_feed_in_diff_hrz1, edm_power_feed_in_diff_hrz2, edm_power_feed_in_diff_hrz3] ?
From the documentation above, the function create_lagged_component_names is supposed to return the names of the target columns. However, when I run the function below, I get back an empty list:
This what my target_fit, past_cov_fit and future_cov_fit looks like:
As far as I understand the last n (forecast_horizon) names in
lagged_data_component_names[0][-forecast_horizon:]
should be equivalent to the output inlagged_data_component_names[1]
?Since my target name is
edm_power_feed_in_diff
and myoutput_chunk_length=3
, I would expect create_lagged_component_names[1] to return[edm_power_feed_in_diff_hrz1, edm_power_feed_in_diff_hrz2, edm_power_feed_in_diff_hrz3]
?