preprocess_dataset {CBASSED50}R Documentation

Preprocesses the data by converting and checking column data types.

Description

This function preprocesses the input data by performing checks on column data types and converting them if necessary. It ensures that the dataset meets certain requirements before further analysis or modeling.

Usage

preprocess_dataset(dataset)

Arguments

dataset

A data frame containing the dataset to be preprocessed.

Value

A preprocessed data frame with converted and validated column data types.

Examples

# Load a sample dataset
data(cbass_dataset)
# Preprocess the dataset
preprocessed_data <- preprocess_dataset(cbass_dataset)

[Package CBASSED50 version 0.2.0 Index]