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;








4















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.










share|improve this question






























    4















    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.










    share|improve this question


























      4












      4








      4








      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.










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 11:56









      xiaodaixiaodai

      4,84011 gold badges51 silver badges75 bronze badges




      4,84011 gold badges51 silver badges75 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          5
















          You can use r2 or function (two names point at the same function).



          For adjusted R^2 you can use adjr2 or adjr² function.






          share|improve this answer
























            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
            );



            );














            draft saved

            draft discarded
















            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









            5
















            You can use r2 or function (two names point at the same function).



            For adjusted R^2 you can use adjr2 or adjr² function.






            share|improve this answer





























              5
















              You can use r2 or function (two names point at the same function).



              For adjusted R^2 you can use adjr2 or adjr² function.






              share|improve this answer



























                5














                5










                5









                You can use r2 or function (two names point at the same function).



                For adjusted R^2 you can use adjr2 or adjr² function.






                share|improve this answer













                You can use r2 or function (two names point at the same function).



                For adjusted R^2 you can use adjr2 or adjr² function.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                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





















                    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.




















                    draft saved

                    draft discarded















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript