Spaces:
Runtime error
Runtime error
File size: 712 Bytes
d2a8669 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
#' Adult Census Income Dataset
#' @export
adult_dataset <- function(){
return (datasets$AdultDataset())
}
#' Bank Dataset
#' @export
bank_dataset <- function(){
return (datasets$BankDataset())
}
#' Compas Dataset
#' @export
compas_dataset <- function(){
return (datasets$CompasDataset())
}
#' German Dataset
#' @export
german_dataset <- function(){
return (datasets$GermanDataset())
}
#' Law School GPA Dataset
#'@seealso
#' \href{https://aif360.readthedocs.io/en/latest/modules/generated/aif360.datasets.LawSchoolGPADataset.html#aif360.datasets.LawSchoolGPADataset}{More about the Law School GPA dataset.}
#' @export
law_school_gpa_dataset <- function(){
return (datasets$LawSchoolGPADataset())
}
|