Random forests - Out-of-bag estimates












3














I am reading the chapter on random forests by Leo Breiman (found here: https://www.stat.berkeley.edu/~breiman/randomforest2001.pdf).



In section 3.1 Using out-of-bag estimates to monitor error, strength, and correlation (page 11), it says:




In each bootstrap training set, about one-third of the instances are
left out. Therefore, the out-of-bag estimates are based on combining
only about one-third as many classifiers as in the ongoing main
combination.




I am not sure I understand how the first sentence (that about one-third of cases are left out of each bootstrap sample) implies the second (that each case is OOB in about one-third of the trees)?










share|cite|improve this question







New contributor




user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    3














    I am reading the chapter on random forests by Leo Breiman (found here: https://www.stat.berkeley.edu/~breiman/randomforest2001.pdf).



    In section 3.1 Using out-of-bag estimates to monitor error, strength, and correlation (page 11), it says:




    In each bootstrap training set, about one-third of the instances are
    left out. Therefore, the out-of-bag estimates are based on combining
    only about one-third as many classifiers as in the ongoing main
    combination.




    I am not sure I understand how the first sentence (that about one-third of cases are left out of each bootstrap sample) implies the second (that each case is OOB in about one-third of the trees)?










    share|cite|improve this question







    New contributor




    user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      3












      3








      3







      I am reading the chapter on random forests by Leo Breiman (found here: https://www.stat.berkeley.edu/~breiman/randomforest2001.pdf).



      In section 3.1 Using out-of-bag estimates to monitor error, strength, and correlation (page 11), it says:




      In each bootstrap training set, about one-third of the instances are
      left out. Therefore, the out-of-bag estimates are based on combining
      only about one-third as many classifiers as in the ongoing main
      combination.




      I am not sure I understand how the first sentence (that about one-third of cases are left out of each bootstrap sample) implies the second (that each case is OOB in about one-third of the trees)?










      share|cite|improve this question







      New contributor




      user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I am reading the chapter on random forests by Leo Breiman (found here: https://www.stat.berkeley.edu/~breiman/randomforest2001.pdf).



      In section 3.1 Using out-of-bag estimates to monitor error, strength, and correlation (page 11), it says:




      In each bootstrap training set, about one-third of the instances are
      left out. Therefore, the out-of-bag estimates are based on combining
      only about one-third as many classifiers as in the ongoing main
      combination.




      I am not sure I understand how the first sentence (that about one-third of cases are left out of each bootstrap sample) implies the second (that each case is OOB in about one-third of the trees)?







      random-forest bootstrap






      share|cite|improve this question







      New contributor




      user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|cite|improve this question







      New contributor




      user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|cite|improve this question




      share|cite|improve this question






      New contributor




      user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 1 hour ago









      user51462

      1162




      1162




      New contributor




      user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      user51462 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          1 Answer
          1






          active

          oldest

          votes


















          2














          In a bootstrap sample we replace. The probability of a subject x being sampled with replacement is at about 2/3. If we build for example 1000 trees with different bootstrap samples, we therefore expect that x will be in (2/3)*1000 of these samples. One third of the trees were therefore not build with subject x. The OOB only calculates the error for the trees that have not been build with x, which is (1/3)*1000 in that case.






          share|cite|improve this answer








          New contributor




          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • +1 Nice explanation. I think that you could make your first sentence more clear if you write "Bootstrapping samples from the original data set with replacement." Also, stats.SE supports math typesetting. More information: math.meta.stackexchange.com/questions/5020/…
            – Sycorax
            1 hour ago












          • @Sycorax Ok thanks I will do that next time.
            – Peter Dieter
            1 hour ago











          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "65"
          };
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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
          });


          }
          });






          user51462 is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f385216%2frandom-forests-out-of-bag-estimates%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









          2














          In a bootstrap sample we replace. The probability of a subject x being sampled with replacement is at about 2/3. If we build for example 1000 trees with different bootstrap samples, we therefore expect that x will be in (2/3)*1000 of these samples. One third of the trees were therefore not build with subject x. The OOB only calculates the error for the trees that have not been build with x, which is (1/3)*1000 in that case.






          share|cite|improve this answer








          New contributor




          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • +1 Nice explanation. I think that you could make your first sentence more clear if you write "Bootstrapping samples from the original data set with replacement." Also, stats.SE supports math typesetting. More information: math.meta.stackexchange.com/questions/5020/…
            – Sycorax
            1 hour ago












          • @Sycorax Ok thanks I will do that next time.
            – Peter Dieter
            1 hour ago
















          2














          In a bootstrap sample we replace. The probability of a subject x being sampled with replacement is at about 2/3. If we build for example 1000 trees with different bootstrap samples, we therefore expect that x will be in (2/3)*1000 of these samples. One third of the trees were therefore not build with subject x. The OOB only calculates the error for the trees that have not been build with x, which is (1/3)*1000 in that case.






          share|cite|improve this answer








          New contributor




          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • +1 Nice explanation. I think that you could make your first sentence more clear if you write "Bootstrapping samples from the original data set with replacement." Also, stats.SE supports math typesetting. More information: math.meta.stackexchange.com/questions/5020/…
            – Sycorax
            1 hour ago












          • @Sycorax Ok thanks I will do that next time.
            – Peter Dieter
            1 hour ago














          2












          2








          2






          In a bootstrap sample we replace. The probability of a subject x being sampled with replacement is at about 2/3. If we build for example 1000 trees with different bootstrap samples, we therefore expect that x will be in (2/3)*1000 of these samples. One third of the trees were therefore not build with subject x. The OOB only calculates the error for the trees that have not been build with x, which is (1/3)*1000 in that case.






          share|cite|improve this answer








          New contributor




          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          In a bootstrap sample we replace. The probability of a subject x being sampled with replacement is at about 2/3. If we build for example 1000 trees with different bootstrap samples, we therefore expect that x will be in (2/3)*1000 of these samples. One third of the trees were therefore not build with subject x. The OOB only calculates the error for the trees that have not been build with x, which is (1/3)*1000 in that case.







          share|cite|improve this answer








          New contributor




          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|cite|improve this answer



          share|cite|improve this answer






          New contributor




          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered 1 hour ago









          Peter Dieter

          212




          212




          New contributor




          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Peter Dieter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.












          • +1 Nice explanation. I think that you could make your first sentence more clear if you write "Bootstrapping samples from the original data set with replacement." Also, stats.SE supports math typesetting. More information: math.meta.stackexchange.com/questions/5020/…
            – Sycorax
            1 hour ago












          • @Sycorax Ok thanks I will do that next time.
            – Peter Dieter
            1 hour ago


















          • +1 Nice explanation. I think that you could make your first sentence more clear if you write "Bootstrapping samples from the original data set with replacement." Also, stats.SE supports math typesetting. More information: math.meta.stackexchange.com/questions/5020/…
            – Sycorax
            1 hour ago












          • @Sycorax Ok thanks I will do that next time.
            – Peter Dieter
            1 hour ago
















          +1 Nice explanation. I think that you could make your first sentence more clear if you write "Bootstrapping samples from the original data set with replacement." Also, stats.SE supports math typesetting. More information: math.meta.stackexchange.com/questions/5020/…
          – Sycorax
          1 hour ago






          +1 Nice explanation. I think that you could make your first sentence more clear if you write "Bootstrapping samples from the original data set with replacement." Also, stats.SE supports math typesetting. More information: math.meta.stackexchange.com/questions/5020/…
          – Sycorax
          1 hour ago














          @Sycorax Ok thanks I will do that next time.
          – Peter Dieter
          1 hour ago




          @Sycorax Ok thanks I will do that next time.
          – Peter Dieter
          1 hour ago










          user51462 is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          user51462 is a new contributor. Be nice, and check out our Code of Conduct.













          user51462 is a new contributor. Be nice, and check out our Code of Conduct.












          user51462 is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Cross Validated!


          • 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.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2fstats.stackexchange.com%2fquestions%2f385216%2frandom-forests-out-of-bag-estimates%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

          Understanding the information contained in the Deep Space Network XML data?

          Ross-on-Wye

          Eastern Orthodox Church