Skip to content

Commit

Permalink
Corrected formula in description
Browse files Browse the repository at this point in the history
  • Loading branch information
lona-k committed Aug 5, 2024
1 parent 125ae7a commit 242a097
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/regr_medae.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' @details
#' The Median Absolute Error is defined as \deqn{
#' \mathop{\mathrm{median}}_i \left| t_i - r_i \right|.
#' \mathop{\mathrm{median}} \left| t_i - r_i \right|.
#' }{
#' median(abs(t - r)).
#' }
Expand Down
2 changes: 1 addition & 1 deletion R/regr_medse.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' @details
#' The Median Squared Error is defined as \deqn{
#' \mathop{\mathrm{median}}_i \left[ \left( t_i - r_i \right)^2 \right].
#' \mathop{\mathrm{median}} \left[ \left( t_i - r_i \right)^2 \right].
#' }{
#' median((t - r)^2).
#' }
Expand Down

0 comments on commit 242a097

Please sign in to comment.