validate_cbass_dataset {CBASSED50}R Documentation

Validate CBASS Dataset

Description

This function validates a dataset to ensure it contains all the mandatory columns required for further processing. If any mandatory columns are missing, it raises an error with the list of missing columns.

Usage

validate_cbass_dataset(dataset)

Arguments

dataset

A data frame representing the CBASS dataset to be processed and validated.

Value

A processed and validated CBASS dataset with appropriate data types for its columns.

See Also

dataset_has_mandatory_columns, convert_columns, check_enough_unique_temperatures_values

Examples

# Assuming a dataset named 'cbass_dataset' is available in the environment
data(cbass_dataset)
preprocessed_data <- preprocess_dataset(cbass_dataset)
validate_cbass_dataset(preprocessed_data)


[Package CBASSED50 version 0.2.0 Index]