R/compat-dplyr.R

Defines functions dplyr_reconstruct.iteration_results dplyr_reconstruct.resample_results dplyr_reconstruct.tune_results

#' @importFrom dplyr dplyr_reconstruct
dplyr::dplyr_reconstruct

#' @noRd
#' @export
dplyr_reconstruct.tune_results <- function(data, template) {
  tune_results_reconstruct(data, template)
}

#' @noRd
#' @export
dplyr_reconstruct.resample_results <- function(data, template) {
  resample_results_reconstruct(data, template)
}

#' @noRd
#' @export
dplyr_reconstruct.iteration_results <- function(data, template) {
  iteration_results_reconstruct(data, template)
}

Try the tune package in your browser

Any scripts or data that you put into this service are public.

tune documentation built on May 29, 2024, 7:32 a.m.