How can I create a boxplot with whiskers?











up vote
1
down vote

favorite












I have created a plot with 3 boxplots, but my whiskers are not showing for one of them.



Boxplot



How can I make them show?



This is my data:




Class 3: 5.055052 3.028838 3.423485 6.434745 6.396239 4.114418
3.687380 2.633139 7.356185 5.736677 4.462504 7.137034



Class 4: 4.738094 21.736701 6.716363 10.306583 4.757640 6.265024




My code is as follows:



boxplot(hvol.concentration,class.3, class.4, ylab="8-OHdG Concentration (ng/ml)", main="Boxplot Distribution of 8-OHdG", ylim=c(0,25), pch=16, names=c("Control", "NYHA III", "NYHA IV"))









share|improve this question




























    up vote
    1
    down vote

    favorite












    I have created a plot with 3 boxplots, but my whiskers are not showing for one of them.



    Boxplot



    How can I make them show?



    This is my data:




    Class 3: 5.055052 3.028838 3.423485 6.434745 6.396239 4.114418
    3.687380 2.633139 7.356185 5.736677 4.462504 7.137034



    Class 4: 4.738094 21.736701 6.716363 10.306583 4.757640 6.265024




    My code is as follows:



    boxplot(hvol.concentration,class.3, class.4, ylab="8-OHdG Concentration (ng/ml)", main="Boxplot Distribution of 8-OHdG", ylim=c(0,25), pch=16, names=c("Control", "NYHA III", "NYHA IV"))









    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I have created a plot with 3 boxplots, but my whiskers are not showing for one of them.



      Boxplot



      How can I make them show?



      This is my data:




      Class 3: 5.055052 3.028838 3.423485 6.434745 6.396239 4.114418
      3.687380 2.633139 7.356185 5.736677 4.462504 7.137034



      Class 4: 4.738094 21.736701 6.716363 10.306583 4.757640 6.265024




      My code is as follows:



      boxplot(hvol.concentration,class.3, class.4, ylab="8-OHdG Concentration (ng/ml)", main="Boxplot Distribution of 8-OHdG", ylim=c(0,25), pch=16, names=c("Control", "NYHA III", "NYHA IV"))









      share|improve this question















      I have created a plot with 3 boxplots, but my whiskers are not showing for one of them.



      Boxplot



      How can I make them show?



      This is my data:




      Class 3: 5.055052 3.028838 3.423485 6.434745 6.396239 4.114418
      3.687380 2.633139 7.356185 5.736677 4.462504 7.137034



      Class 4: 4.738094 21.736701 6.716363 10.306583 4.757640 6.265024




      My code is as follows:



      boxplot(hvol.concentration,class.3, class.4, ylab="8-OHdG Concentration (ng/ml)", main="Boxplot Distribution of 8-OHdG", ylim=c(0,25), pch=16, names=c("Control", "NYHA III", "NYHA IV"))






      r boxplot errorbar






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 13 at 12:11









      hrbrmstr

      59k584143




      59k584143










      asked Nov 13 at 12:06









      Marierose M. Mina

      112




      112
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          boxplot(c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024), plot = FALSE)$stats
          ## [,1]
          ## [1,] 4.738094 <<== It's definitely there but the lower bound of the IQR is almost the same as min val
          ## [2,] 4.757640
          ## [3,] 6.490694
          ## [4,] 10.306583 <<== Upper bound of IQR == max val
          ## [5,] 10.306583


          If you make the plot window bigger the grid size will be sufficient to see the lower IQR:



          boxplot(
          c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024),
          horizontal = TRUE
          )


          enter image description here






          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',
            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%2f53280693%2fhow-can-i-create-a-boxplot-with-whiskers%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








            up vote
            1
            down vote













            boxplot(c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024), plot = FALSE)$stats
            ## [,1]
            ## [1,] 4.738094 <<== It's definitely there but the lower bound of the IQR is almost the same as min val
            ## [2,] 4.757640
            ## [3,] 6.490694
            ## [4,] 10.306583 <<== Upper bound of IQR == max val
            ## [5,] 10.306583


            If you make the plot window bigger the grid size will be sufficient to see the lower IQR:



            boxplot(
            c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024),
            horizontal = TRUE
            )


            enter image description here






            share|improve this answer

























              up vote
              1
              down vote













              boxplot(c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024), plot = FALSE)$stats
              ## [,1]
              ## [1,] 4.738094 <<== It's definitely there but the lower bound of the IQR is almost the same as min val
              ## [2,] 4.757640
              ## [3,] 6.490694
              ## [4,] 10.306583 <<== Upper bound of IQR == max val
              ## [5,] 10.306583


              If you make the plot window bigger the grid size will be sufficient to see the lower IQR:



              boxplot(
              c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024),
              horizontal = TRUE
              )


              enter image description here






              share|improve this answer























                up vote
                1
                down vote










                up vote
                1
                down vote









                boxplot(c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024), plot = FALSE)$stats
                ## [,1]
                ## [1,] 4.738094 <<== It's definitely there but the lower bound of the IQR is almost the same as min val
                ## [2,] 4.757640
                ## [3,] 6.490694
                ## [4,] 10.306583 <<== Upper bound of IQR == max val
                ## [5,] 10.306583


                If you make the plot window bigger the grid size will be sufficient to see the lower IQR:



                boxplot(
                c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024),
                horizontal = TRUE
                )


                enter image description here






                share|improve this answer












                boxplot(c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024), plot = FALSE)$stats
                ## [,1]
                ## [1,] 4.738094 <<== It's definitely there but the lower bound of the IQR is almost the same as min val
                ## [2,] 4.757640
                ## [3,] 6.490694
                ## [4,] 10.306583 <<== Upper bound of IQR == max val
                ## [5,] 10.306583


                If you make the plot window bigger the grid size will be sufficient to see the lower IQR:



                boxplot(
                c(4.738094, 21.736701, 6.716363, 10.306583, 4.757640, 6.265024),
                horizontal = TRUE
                )


                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 13 at 12:17









                hrbrmstr

                59k584143




                59k584143






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53280693%2fhow-can-i-create-a-boxplot-with-whiskers%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

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?