Reads a dataset from a CSV file and optionally parses a timestamp column.
read_dataset(
dataset_path,
timestamp_col = "timestamp",
timestamp_formats = c("%d/%m/%Y %H:%M:%S", "%H:%M:%S %d/%m/%Y")
)
A data frame containing the dataset.
A string specifying the path to the CSV file.
A string specifying the timestamp column name (default: `"timestamp"`).
A vector of date-time formats to try for parsing timestamps.