Converting time series to tabular form

145 Views Asked by At

I have 8 ids and want to build a model with these ids. Then make forecasting these labels because labels are our target variable and we want to predict it for each id. Additionally, I want to make the dataset tabular from the time series. How can I do that?

`test_df <- data.frame(ID = c("806667", "2801545", "987450", "1622629", "597231", "483735", "267637", "309212"),
                      Date = c("01-01-2020", "01-02-2020", "01-03-2018", "01-04-2018", "01-05-2015", "01-06-2015",
                               "01-07-2012", "01-08-2012"),
                      X1 = paste0("X", 1:8), 
                      X2 = c(300, 400, 315, 258, 200, 410, 367, 165),
                      Label = c("0", "0", "0", "1", "0", "0", "0", "0"))`

This is my code how should I transform this to a tabular form?

0

There are 0 best solutions below