Datasets
To perform a s
Data Format
To use a dataset with InstanceLib on your own dataset, your data file needs to adhere to a certain format. InstanceLib accepts the following formats:
Tabular Datasets with extensions
.csv,.xlsx, or.xls. CSV and TAB files are preferably comma, semicolon, or tab-delimited. The preferred file encoding is UTF-8. These can be imported with the functionsread_csv_dataset()andread_excel_dataset()respectively.
- Pandas DataFrames. If you already created a
DataFramewith all your data,you can directly use the
build_environment()function to convert your DataFrame to anEnvironmentobject that can be used further.