Skip to main content

Creating Regression model

From a workbook, click Actions > ML Dashboard. The ML Dashboard page is displayed. From the Create Model section, click Regression and specify the following:

FeatureLinear Regression
Model TypeGeneralized linear model
Best Suited ForLinearly related continuous targets; when interpretability is key
Relationship ModelingAssumes a linear relationship between predictors and target
Handling of InteractionsRequires manual inclusion of interaction terms
InterpretabilityVery high – clear coefficient estimates and significance tests
Parameter TuningMinimal – primarily choice of regularization (e.g., L1/L2 penalties)
Data RequirementsNeeds homoscedasticity, no multicollinearity, and normally distributed errors
Handling of OutliersSensitive to outliers; robust variants (e.g., RANSAC) can mitigate
MulticollinearityProblematic – variance inflation; requires feature selection or PCA
Feature ImportanceDirectly from coefficient magnitudes
Library Supportscikit-learn (LinearRegression, Ridge, Lasso), statsmodels
Prediction OutputContinuous point estimates (with optional confidence intervals)
Deployment ReadinessExtremely lightweight; instantaneous inference; minimal memory footprint
External FeaturesNew features simply added as new coefficients
Community & ResourcesExtensive academic literature; ubiquitous baseline for regression tasks

Click Create and commence the model training process.