R Newbie…calculating averages












0














I'm very new to R and I'm still quite close to the bottom of the very steep learning curve I think. So...



I have a data frame (imported from a .csv file). Contains a number of fields - let's call them Field1, Field2, Field3... Field 10.



The fields are numeric. For each row of data I'd like to calculate the average of the lowest 3 (say) numbers. In other words:



((smallest number) + (second smallest number) + (third smallest number))/3



Also there are some NAs in the data so I'd like the calculation to return NA if there aren't actually three numbers to avarage over (although perhaps R will do this naturally anyway).



Is there a succinct way to do this in R and (better still) to store the result as a new field in the existing data frame?



Grateful for any advice.
Thanks.
A










share|improve this question





























    0














    I'm very new to R and I'm still quite close to the bottom of the very steep learning curve I think. So...



    I have a data frame (imported from a .csv file). Contains a number of fields - let's call them Field1, Field2, Field3... Field 10.



    The fields are numeric. For each row of data I'd like to calculate the average of the lowest 3 (say) numbers. In other words:



    ((smallest number) + (second smallest number) + (third smallest number))/3



    Also there are some NAs in the data so I'd like the calculation to return NA if there aren't actually three numbers to avarage over (although perhaps R will do this naturally anyway).



    Is there a succinct way to do this in R and (better still) to store the result as a new field in the existing data frame?



    Grateful for any advice.
    Thanks.
    A










    share|improve this question



























      0












      0








      0


      1





      I'm very new to R and I'm still quite close to the bottom of the very steep learning curve I think. So...



      I have a data frame (imported from a .csv file). Contains a number of fields - let's call them Field1, Field2, Field3... Field 10.



      The fields are numeric. For each row of data I'd like to calculate the average of the lowest 3 (say) numbers. In other words:



      ((smallest number) + (second smallest number) + (third smallest number))/3



      Also there are some NAs in the data so I'd like the calculation to return NA if there aren't actually three numbers to avarage over (although perhaps R will do this naturally anyway).



      Is there a succinct way to do this in R and (better still) to store the result as a new field in the existing data frame?



      Grateful for any advice.
      Thanks.
      A










      share|improve this question















      I'm very new to R and I'm still quite close to the bottom of the very steep learning curve I think. So...



      I have a data frame (imported from a .csv file). Contains a number of fields - let's call them Field1, Field2, Field3... Field 10.



      The fields are numeric. For each row of data I'd like to calculate the average of the lowest 3 (say) numbers. In other words:



      ((smallest number) + (second smallest number) + (third smallest number))/3



      Also there are some NAs in the data so I'd like the calculation to return NA if there aren't actually three numbers to avarage over (although perhaps R will do this naturally anyway).



      Is there a succinct way to do this in R and (better still) to store the result as a new field in the existing data frame?



      Grateful for any advice.
      Thanks.
      A







      r dataframe calculated-columns






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 19 '18 at 20:22









      Daniel A. White

      148k36293372




      148k36293372










      asked Nov 19 '18 at 20:21









      AlanAlan

      306




      306
























          2 Answers
          2






          active

          oldest

          votes


















          0















          For each row of data I'd like to calculate the average of the lowest 3 (say) numbers.




          I think this should achieve what you're asking:



          data <- mtcars
          data$low.mean <- apply(data, 1, function(x) mean(head(sort(x[!is.na(x)]), n = 3)))





          share|improve this answer





























            0














             data(mtcars) 

            avg3 <- sapply(mtcars, function(x) mean(head(sort(x[!is.na(x)]), 3)))

            avg3

            mtcars.avg3 <- rbind(mtcars, avg3)

            mtcars.avg3





            share|improve this answer



















            • 1




              Maybe change sort(x[!is.na(x)] )[1:3]) to head(sort(x[!is.na(x)]), 3) for the case that removing the NAs gives less than 3 results.
              – mickey
              Nov 19 '18 at 20:47










            • Thanks @mickey, good point
              – paoloeusebi
              Nov 19 '18 at 21:02











            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/3.0/"u003ecc by-sa 3.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%2f53382074%2fr-newbie-calculating-averages%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0















            For each row of data I'd like to calculate the average of the lowest 3 (say) numbers.




            I think this should achieve what you're asking:



            data <- mtcars
            data$low.mean <- apply(data, 1, function(x) mean(head(sort(x[!is.na(x)]), n = 3)))





            share|improve this answer


























              0















              For each row of data I'd like to calculate the average of the lowest 3 (say) numbers.




              I think this should achieve what you're asking:



              data <- mtcars
              data$low.mean <- apply(data, 1, function(x) mean(head(sort(x[!is.na(x)]), n = 3)))





              share|improve this answer
























                0












                0








                0







                For each row of data I'd like to calculate the average of the lowest 3 (say) numbers.




                I think this should achieve what you're asking:



                data <- mtcars
                data$low.mean <- apply(data, 1, function(x) mean(head(sort(x[!is.na(x)]), n = 3)))





                share|improve this answer













                For each row of data I'd like to calculate the average of the lowest 3 (say) numbers.




                I think this should achieve what you're asking:



                data <- mtcars
                data$low.mean <- apply(data, 1, function(x) mean(head(sort(x[!is.na(x)]), n = 3)))






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 19 '18 at 20:47









                alexjacksonalexjackson

                221




                221

























                    0














                     data(mtcars) 

                    avg3 <- sapply(mtcars, function(x) mean(head(sort(x[!is.na(x)]), 3)))

                    avg3

                    mtcars.avg3 <- rbind(mtcars, avg3)

                    mtcars.avg3





                    share|improve this answer



















                    • 1




                      Maybe change sort(x[!is.na(x)] )[1:3]) to head(sort(x[!is.na(x)]), 3) for the case that removing the NAs gives less than 3 results.
                      – mickey
                      Nov 19 '18 at 20:47










                    • Thanks @mickey, good point
                      – paoloeusebi
                      Nov 19 '18 at 21:02
















                    0














                     data(mtcars) 

                    avg3 <- sapply(mtcars, function(x) mean(head(sort(x[!is.na(x)]), 3)))

                    avg3

                    mtcars.avg3 <- rbind(mtcars, avg3)

                    mtcars.avg3





                    share|improve this answer



















                    • 1




                      Maybe change sort(x[!is.na(x)] )[1:3]) to head(sort(x[!is.na(x)]), 3) for the case that removing the NAs gives less than 3 results.
                      – mickey
                      Nov 19 '18 at 20:47










                    • Thanks @mickey, good point
                      – paoloeusebi
                      Nov 19 '18 at 21:02














                    0












                    0








                    0






                     data(mtcars) 

                    avg3 <- sapply(mtcars, function(x) mean(head(sort(x[!is.na(x)]), 3)))

                    avg3

                    mtcars.avg3 <- rbind(mtcars, avg3)

                    mtcars.avg3





                    share|improve this answer














                     data(mtcars) 

                    avg3 <- sapply(mtcars, function(x) mean(head(sort(x[!is.na(x)]), 3)))

                    avg3

                    mtcars.avg3 <- rbind(mtcars, avg3)

                    mtcars.avg3






                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 19 '18 at 21:00

























                    answered Nov 19 '18 at 20:36









                    paoloeusebipaoloeusebi

                    641413




                    641413








                    • 1




                      Maybe change sort(x[!is.na(x)] )[1:3]) to head(sort(x[!is.na(x)]), 3) for the case that removing the NAs gives less than 3 results.
                      – mickey
                      Nov 19 '18 at 20:47










                    • Thanks @mickey, good point
                      – paoloeusebi
                      Nov 19 '18 at 21:02














                    • 1




                      Maybe change sort(x[!is.na(x)] )[1:3]) to head(sort(x[!is.na(x)]), 3) for the case that removing the NAs gives less than 3 results.
                      – mickey
                      Nov 19 '18 at 20:47










                    • Thanks @mickey, good point
                      – paoloeusebi
                      Nov 19 '18 at 21:02








                    1




                    1




                    Maybe change sort(x[!is.na(x)] )[1:3]) to head(sort(x[!is.na(x)]), 3) for the case that removing the NAs gives less than 3 results.
                    – mickey
                    Nov 19 '18 at 20:47




                    Maybe change sort(x[!is.na(x)] )[1:3]) to head(sort(x[!is.na(x)]), 3) for the case that removing the NAs gives less than 3 results.
                    – mickey
                    Nov 19 '18 at 20:47












                    Thanks @mickey, good point
                    – paoloeusebi
                    Nov 19 '18 at 21:02




                    Thanks @mickey, good point
                    – paoloeusebi
                    Nov 19 '18 at 21:02


















                    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%2f53382074%2fr-newbie-calculating-averages%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

                    MongoDB - Not Authorized To Execute Command

                    How to fix TextFormField cause rebuild widget in Flutter

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith