#' @title rankModels
#'
#' @description Rank models according to rmse and winkler scores
#'
#' @importFrom stats na.omit
#'
#' @param data Tibble of model accuracies including rmse and winkler
#'
#' @export
#'
rankModels <-
function(data){
data %>%
na.omit() %>%
dplyr::mutate(rank = rank(RMSE)) %>%
dplyr::arrange(rank)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.