如何在R中计算mdape

how to calculate mdape in R

我想使用 mdape() 函数在 R 中获取中位数绝对百分比误差,但它说:

could not find function "mdape"

我使用 Metrics 库,它适用于中值绝对误差

我不确定 Metrics 包中是否存在 mdape 函数。

我找到了 cognitiveutils::MDAPE()prophet::performance_metrics(df, metrics = 'mdape', rolling_window = 0.1)

尝试(cognitiveutils)

install.packages("remotes")
remotes::install_github("JanaJarecki/cognitiveutils")
cognitiveutils::MDAPE()

或(prophet)

install.packages("prophet")
prophet::performance_metrics(df, metrics = 'mdape', rolling_window = 0.1)