Skip to content

Commit

Permalink
naming params Pt.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Jan 13, 2024
1 parent b1b748d commit 487a625
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,14 +55,14 @@ 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)
"""

return rcopy(R"$r_code")

end

# multivariate time series forecasting models ----------------------------------------------
Expand Down

0 comments on commit 487a625

Please sign in to comment.