R/datasets.R
load_dataset_into_data_frame.RdLoad all records from the dataset into a dataframe.
load_dataset_into_data_frame( dataset, on_error = "null", out_of_range_datetime = "null" )
| dataset | The Tabular Dataset object. |
|---|---|
| on_error | How to handle any error values in the dataset, such as those produced by an error while parsing values. Valid values are 'null' which replaces them with NULL; and 'fail' which will result in an exception. |
| out_of_range_datetime | How to handle date-time values that are outside the range supported by Pandas. Valid values are 'null' which replaces them with NULL; and 'fail' which will result in an exception. |
A data.frame.