I am new at using R and I am encountering a problem with historical hourly electric load data that I have downloaded.My goal is to make a load forecast based on an ARIMA model and/or Artificial Neural Networks.
The problem is that the data is in the following Date-time (hourly) format:
#>      DateTime                              Day_ahead_Load Actual_Load
#> [1,] "01.01.2015 00:00 - 01.01.2015 01:00" "6552"         "6100"     
#> [2,] "01.01.2015 01:00 - 01.01.2015 02:00" "6140"         "5713"     
#> [3,] "01.01.2015 02:00 - 01.01.2015 03:00" "5950"         "5553"
I have tried to make a POSIXct object but it didn't work:
as.Date.POSIXct(DateTime, format = "%d-%m-%Y %H:%M:%S", tz="EET", usetz=TRUE)
The message I get is that it is not in an unambiguous format. I would really appreciate your feedback on this. Thank you in advance.
Best Regards,
Iro
 
    