Skip to content

Commit

Permalink
Merge pull request #111 from Kev-nSun/patch-4
Browse files Browse the repository at this point in the history
Update ridge_regression.md
  • Loading branch information
mattcieslak authored Nov 12, 2024
2 parents fd630f5 + 3f5de9a commit bcebf8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/CommonMethods/ridge_regression.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ title: Ridge Regression
parent: Common Methods
---

Ridge regression is a linear regression model that is useful when dealing with highly dimensional data which will be prone to overfitting. Ridge regression applies a regularization term that penalizes the coefficient of colinear parameters, shrinking them towards zero. The strength of regularization is based on an alpha term, which can be modified based on how aggressive you want your feature selection and how many parameters you're starting with.
Ridge regression is a linear regression model that is useful when dealing with highly dimensional data which will be prone to overfitting. Ridge regression applies a regularization term that penalizes the coefficient of colinear parameters, shrinking them towards zero. The strength of regularization is based on an alpha term (also known as L2), which can be modified based on how aggressive you want your feature selection and how many parameters you're starting with.

In recent projects, we have used ridge regression to relate the multivariate data of personalized function network topography loadings (59,412 x 17 values) to our variables of interest (cognition, p-factor, polygenic risk, etc.). For example code: https://github.com/PennLINC/keller-networks/tree/main/Step2_RidgeRegression.
In recent projects, we have used ridge regression to relate the multivariate data of personalized functional network topography loadings (59,412 x 17 values) to our variables of interest (cognition, p-factor, polygenic risk, etc.). For example code: https://github.com/PennLINC/keller-networks/tree/main/Step2_RidgeRegression.

0 comments on commit bcebf8c

Please sign in to comment.