RSquared
is a possible value for the RegressionReport option for Regress and DesignedRegress which represents the coefficient of determination R2.
RSquared
RSquared
is a possible value for the RegressionReport option for Regress and DesignedRegress which represents the coefficient of determination R2.
Details and Options
- To use RSquared, you first need to load the Regression Common Functions Package. You can do this by using Needs["LinearRegression`"], which will automatically load the Regression Common Functions Package, or you can load the package directly by using Needs["RegressionCommon`"].
- RSquared is the ratio of the model sum of squares to the total sum of squares.
- RSquared gives the fraction of the variation of the response that is predicted by the model.
Examples
Basic Examples (1)
Needs["LinearRegression`"]data = {{0.05, 90}, {0.09, 95}, {0.14, 110},
{0.17, 125}, {0.2, 140}, {0.21, 150},
{0.23, 175}, {0.25, 190}, {0.3, 210},
{0.35, 255}};RSquared for a linear regression:
Regress[data, {1, x ^ 2}, x, RegressionReport -> {RSquared}]See Also
Tech Notes
Related Guides
Text
Wolfram Research (2007), RSquared, Wolfram Language function, https://reference.wolfram.com/language/RegressionCommon/ref/RSquared.html.
CMS
Wolfram Language. 2007. "RSquared." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/RegressionCommon/ref/RSquared.html.
APA
Wolfram Language. (2007). RSquared. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/RegressionCommon/ref/RSquared.html
BibTeX
@misc{reference.wolfram_2026_rsquared, author="Wolfram Research", title="{RSquared}", year="2007", howpublished="\url{https://reference.wolfram.com/language/RegressionCommon/ref/RSquared.html}", note=[Accessed: 15-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_rsquared, organization={Wolfram Research}, title={RSquared}, year={2007}, url={https://reference.wolfram.com/language/RegressionCommon/ref/RSquared.html}, note=[Accessed: 15-June-2026]}