Prepares the Bank marketing dataset available on UCI Machine Learning repository here The data is available publicly for download, there is no need to authenticate. Please cite the data as Moro et al., 2014 S. Moro, P. Cortez and P. Rita. A Data-Driven Approach to Predict the Success of Bank Telemarketing. Decision Support Systems, Elsevier, 62:22-31, June 2014
bank_marketing_dataset(
root,
split = "train",
indexes = NULL,
download = FALSE,
with_call_duration = FALSE
)
path to the data location
string. 'train' or 'submission'
set of integers for subsampling (e.g. 1:41188)
whether to download or not
whether the call duration should be included as a feature. Could lead to leakage. Default: FALSE.
A torch dataset that can be consumed with torch::dataloader()
.
if (torch::torch_is_installed() && FALSE) {
bank_mkt <- bank_marketing_dataset("./data", download = TRUE)
length(bank_mkt)
}