You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The framework needs to provide a simple to use method, that automatically loads the data from a given path, independantly of the type of file and the encoding. Therefore a function module is needed with the following methods:
load_file(path: Union[str, Path], *kwargs) >> Top-Level Method used by the user to load any kind of file
load_csv_like_file >> Method to automatically load CSV or TXT files with comma separated fields
load_excel_file >> Method to automatically load an EXCEL file
The method to load CSV files needs to be able to use the correct encoding, separator and decimal. If required, all columns need to be casted into the correct data type.
The method to load EXCEL files needs to be able to load files with different engines.
Dependencies
Sample Datasets.
The text was updated successfully, but these errors were encountered:
The framework needs to provide a simple to use method, that automatically loads the data from a given path, independantly of the type of file and the encoding. Therefore a function module is needed with the following methods:
The method to load CSV files needs to be able to use the correct encoding, separator and decimal. If required, all columns need to be casted into the correct data type.
The method to load EXCEL files needs to be able to load files with different engines.
Dependencies
Sample Datasets.
The text was updated successfully, but these errors were encountered: