Is there a convenience function to compute the R^2 for GLM.jl's lm?R Pass colname into glht function as variable in loopNot able to draw regression line in RWhich Machine Learning technique is most valid in this scenario?Confidence interval for independent variable of a linear regression model in ROutput Gadfly Graphics and DataFrame in one SVG, PDF, etcHow to manually compute the p-value of t-statistic in linear regressionOLS Discrete Marginal Effects for Triple Interaction in RJulia: How to do a by with columns defined as CategoricalArrays.NullableCategoricalArrayString,1,Int32?How to perform cross validation(K-fold) in julia?Creating several linear models simultaneously from tidy data in R
Expectation value of operators with non-zero Hamiltonian commutators
Would it be unbalanced to increase a druid's number of uses of Wild Shape based on level?
Why does the speed of sound decrease at high altitudes although the air density decreases?
In what state are satellites left in when they are left in a graveyard orbit?
Output a Super Mario Image
What 68-pin connector is this on my 2.5" solid state drive?
Can a business put whatever they want into a contract?
Are there any “Third Order” acronyms used in space exploration?
Why is the car dealer insisting on a loan instead of cash?
Why are some files not movable on Windows 10?
Planar regular languages
What's the benefit of prohibiting the use of techniques/language constructs that have not been taught?
How does a simple logistic regression model achieve a 92% classification accuracy on MNIST?
An ES6 array of numbers - Double last number, delete the first number. Max of 10. Stop at 2^15
Why is my fire extinguisher emptied after one use?
How to write characters doing illogical things in a believable way?
How to draw a Venn diagram for X - (Y intersect Z)?
Work done by spring force
A command to output each line forward then backwards
Bit one of the Intel 8080's Flags register
Does a large scratch in an ND filter affect image quality?
How can I say "I want to" as a short response, omitting the main verb?
Assign every word from a line to a variable
Ethernet, Wifi and a little human psychology
Is there a convenience function to compute the R^2 for GLM.jl's lm?
R Pass colname into glht function as variable in loopNot able to draw regression line in RWhich Machine Learning technique is most valid in this scenario?Confidence interval for independent variable of a linear regression model in ROutput Gadfly Graphics and DataFrame in one SVG, PDF, etcHow to manually compute the p-value of t-statistic in linear regressionOLS Discrete Marginal Effects for Triple Interaction in RJulia: How to do a by with columns defined as CategoricalArrays.NullableCategoricalArrayString,1,Int32?How to perform cross validation(K-fold) in julia?Creating several linear models simultaneously from tidy data in R
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
using RDatasets
cars = dataset("datasets", "cars")
m1 = lm(@formula(Dist~Speed), cars)
Now how do I extract the R^2 of m1
? I tried summary(m1)
and it didn't contain the information.
julia linear-regression
add a comment
|
using RDatasets
cars = dataset("datasets", "cars")
m1 = lm(@formula(Dist~Speed), cars)
Now how do I extract the R^2 of m1
? I tried summary(m1)
and it didn't contain the information.
julia linear-regression
add a comment
|
using RDatasets
cars = dataset("datasets", "cars")
m1 = lm(@formula(Dist~Speed), cars)
Now how do I extract the R^2 of m1
? I tried summary(m1)
and it didn't contain the information.
julia linear-regression
using RDatasets
cars = dataset("datasets", "cars")
m1 = lm(@formula(Dist~Speed), cars)
Now how do I extract the R^2 of m1
? I tried summary(m1)
and it didn't contain the information.
julia linear-regression
julia linear-regression
asked Mar 28 at 11:56
xiaodaixiaodai
4,84011 gold badges51 silver badges75 bronze badges
4,84011 gold badges51 silver badges75 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
You can use r2
or r²
function (two names point at the same function).
For adjusted R^2 you can use adjr2
or adjr²
function.
add a comment
|
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55397041%2fis-there-a-convenience-function-to-compute-the-r2-for-glm-jls-lm%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use r2
or r²
function (two names point at the same function).
For adjusted R^2 you can use adjr2
or adjr²
function.
add a comment
|
You can use r2
or r²
function (two names point at the same function).
For adjusted R^2 you can use adjr2
or adjr²
function.
add a comment
|
You can use r2
or r²
function (two names point at the same function).
For adjusted R^2 you can use adjr2
or adjr²
function.
You can use r2
or r²
function (two names point at the same function).
For adjusted R^2 you can use adjr2
or adjr²
function.
answered Mar 28 at 13:26
Bogumił KamińskiBogumił Kamiński
20.3k2 gold badges19 silver badges28 bronze badges
20.3k2 gold badges19 silver badges28 bronze badges
add a comment
|
add a comment
|
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55397041%2fis-there-a-convenience-function-to-compute-the-r2-for-glm-jls-lm%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown