Skill · Predicting continuous valuesLive
Regression
Fit lines and curves to data and measure the error — linear, polynomial, and regularised models on real datasets.
- Task 1Fit a lineEasyFit the straight line that runs through your data.→
- Task 2Score with R²EasyMeasure how much variance your model explains.→
- Task 3Multiple featuresMediumRegress on several inputs at once.→
- Task 4Train / test splitMediumJudge a model on data it never trained on.→
- Task 5Polynomial fitMediumBend the line into a curve with polynomial features.→
- Task 6Ridge & LassoHardRegularise to fight overfitting — and let Lasso prune features.→
- Task 7Feature scalingHardPut features on the same scale before modelling.→
- Task 8Mean absolute errorMediumMeasure error in the units you actually care about.→
- Task 9Cross-validationHardScore across several folds, not just one lucky split.→
- Task 10A full pipelineHardScale and model together on a real dataset, scored honestly.→