Read data

Load sample dataset

Read example dataset to pandas DataFrame. Datasets are loaded from GitHub repository datasets-for-start, you need an internet connection to load them.

You can select from three datasets:

  • Iris dataset - it can be used in multi-class classification tasks,
  • Adult dataset - it can be used in binary classification tasks,
  • Housing dataset - it can be used in regression tasks.
sampleexampledatasetpandas

Required packages

You need below packages to use the code generated by recipe. All packages are automatically installed in MLJAR Studio.

pandas>=1.0.0

Interactive recipe

You can use below interactive recipe to generate code. This recipe is available in MLJAR Studio.

Python code

# Python code will be here
Previous
Read data