Skip to content

🧪 DataScienceCategory

A step in the data science process.

Stub code in ideIntegration.sdsstub
enum DataScienceCategory {
    /**
     * Load your data into the program.
     */
    DataImport

    /**
     * Prepare your data for analysis.
     */
    DataPreparation

    /**
     * Explore your data.
     */
    DataExploration

    /**
     * Save your data for later use.
     */
    DataExport

    /**
     * Configure a model and train it on your data.
     */
    Modeling

    /**
     * Evaluate the performance of your model.
     */
    ModelEvaluation
}

DataExploration

Explore your data.

DataExport

Save your data for later use.

DataImport

Load your data into the program.

DataPreparation

Prepare your data for analysis.

ModelEvaluation

Evaluate the performance of your model.

Modeling

Configure a model and train it on your data.