Skip to content

Commit

Permalink
rm ;
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Jan 13, 2024
1 parent 5f6050b commit 8dc9782
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ahead.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ R"load_ahead <- try(library(ahead), silent = TRUE)"

# univariate time series forecasting models ----------------------------------------------

function dynrmf(;y, h = 5, level = 95)
function dynrmf(y, h = 5, level = 95)

r_code = """
ahead::dynrmf(y = $y, h = $h, level = $level)
Expand All @@ -67,7 +67,7 @@ end

# multivariate time series forecasting models ----------------------------------------------

function ridge2f(;y,
function ridge2f(y,
xreg = nothing,
h = 5,
level = 95,
Expand Down

0 comments on commit 8dc9782

Please sign in to comment.