Example Workflow
Here’s an example of how you might use Prossa in a typical data preprocessing workflow:
import pandas as pdfrom prossa import analyze_dataset, check_missing_values, check_outliers, check_scaling_encoding
# Load your datasetdf = pd.read_csv('your_dataset.csv')
# Get a comprehensive analysisanalyze_dataset(df)
# Check for missing valuesmissing_values = check_missing_values(df)print(missing_values)
# Check for outliersoutliers = check_outliers(df)print(outliers)
# Check if scaling or encoding is neededscaling_encoding = check_scaling_encoding(df)print(scaling_encoding)
By following these steps, you can quickly gain insights into your dataset and identify necessary preprocessing steps.