Nothing
#' @title Convert CADF dataset into annualhalfing model dataset
#' @export CADF_to_annualhalfing_data
#'
#' @param cadf.data CADF dataset
#' @description
#' Converts CADF output to dataset for annual halfing model
#'
CADF_to_annualhalfing_data <- function(cadf.data) {
dta <- lapply(cadf.data, function(x) utils::tail(x$data, 1))
dta <- do.call(rbind, dta)
return(dta)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.