Skip to content

fastR slower than GNU R #195

@abhinaynagpal

Description

@abhinaynagpal

library('forecast')
data("AirPassengers")
time_func <- function() {
startTime <- Sys.time()
mymodel <- auto.arima(AirPassengers)
myforecast <- forecast(mymodel, level=c(95), h=10*12)
endTime <- Sys.time()
print(endTime - startTime)
}

time_func()

GNU R takes 1 second VS fastR : 3.9 seconds, any pointers how this can be optimized?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions