Algorithm for forward stepwise regression












1












$begingroup$


I am trying to implement the algorithm for forward stepwise selection following the book "Introduction to Statistical learning":



The steps listed in the book are:



Algorithm 6.2 Forward stepwise selection
1. Let M0 denote the null model, which contains no predictors.
2. For k = 0, . . . , p − 1:
(a) Consider all p − k models that augment the predictors in Mk
with one additional predictor.
(b) Choose the best among these p − k models, and call it Mk+1.
Here best is defined as having smallest RSS or highest R2.
3. Select a single best model from among M0, . . . ,Mp using crossvalidated
prediction error, Cp (AIC), BIC, or adjusted R2.


My question is I am not quite clear on whether or not cross validation should be used in step2. If so, why? or else why not?










share|cite|improve this question









$endgroup$

















    1












    $begingroup$


    I am trying to implement the algorithm for forward stepwise selection following the book "Introduction to Statistical learning":



    The steps listed in the book are:



    Algorithm 6.2 Forward stepwise selection
    1. Let M0 denote the null model, which contains no predictors.
    2. For k = 0, . . . , p − 1:
    (a) Consider all p − k models that augment the predictors in Mk
    with one additional predictor.
    (b) Choose the best among these p − k models, and call it Mk+1.
    Here best is defined as having smallest RSS or highest R2.
    3. Select a single best model from among M0, . . . ,Mp using crossvalidated
    prediction error, Cp (AIC), BIC, or adjusted R2.


    My question is I am not quite clear on whether or not cross validation should be used in step2. If so, why? or else why not?










    share|cite|improve this question









    $endgroup$















      1












      1








      1





      $begingroup$


      I am trying to implement the algorithm for forward stepwise selection following the book "Introduction to Statistical learning":



      The steps listed in the book are:



      Algorithm 6.2 Forward stepwise selection
      1. Let M0 denote the null model, which contains no predictors.
      2. For k = 0, . . . , p − 1:
      (a) Consider all p − k models that augment the predictors in Mk
      with one additional predictor.
      (b) Choose the best among these p − k models, and call it Mk+1.
      Here best is defined as having smallest RSS or highest R2.
      3. Select a single best model from among M0, . . . ,Mp using crossvalidated
      prediction error, Cp (AIC), BIC, or adjusted R2.


      My question is I am not quite clear on whether or not cross validation should be used in step2. If so, why? or else why not?










      share|cite|improve this question









      $endgroup$




      I am trying to implement the algorithm for forward stepwise selection following the book "Introduction to Statistical learning":



      The steps listed in the book are:



      Algorithm 6.2 Forward stepwise selection
      1. Let M0 denote the null model, which contains no predictors.
      2. For k = 0, . . . , p − 1:
      (a) Consider all p − k models that augment the predictors in Mk
      with one additional predictor.
      (b) Choose the best among these p − k models, and call it Mk+1.
      Here best is defined as having smallest RSS or highest R2.
      3. Select a single best model from among M0, . . . ,Mp using crossvalidated
      prediction error, Cp (AIC), BIC, or adjusted R2.


      My question is I am not quite clear on whether or not cross validation should be used in step2. If so, why? or else why not?







      regression cross-validation






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Jan 21 at 4:57









      southwindsouthwind

      84




      84






















          1 Answer
          1






          active

          oldest

          votes


















          2












          $begingroup$


          best is defined as having smallest RSS or highest R2.




          Cross-validation is not mentioned here, so per the text, you would simply choose the model based on in-sample RSS or $R^2$.



          Overfitting is (hopefully) controlled by the cross-validation in step 3.



          Of course, nothing keeps you from modifying the algorithm given in the book. Just note that you will then do a lot of cross-validation, since you would cross-validate $p-k$ models in each of $p$ iterations of step 2.






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            If I perform cross-validation in step 2, do I still need step 3 since I can just select the model with the smallest error from step 2?
            $endgroup$
            – southwind
            Jan 21 at 6:39










          • $begingroup$
            I would still do step 3. Even with cross-validation in step 2, adding another predictor may overfit. Note also that the result from step 2 is an entire collection of $p$ models with $0, dots, p-1$ predictors, and step 3 consists of choosing one of these models, for which you need some criterion, and cross-validation is a good one.
            $endgroup$
            – Stephan Kolassa
            Jan 21 at 9:27











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


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f388317%2falgorithm-for-forward-stepwise-regression%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












          $begingroup$


          best is defined as having smallest RSS or highest R2.




          Cross-validation is not mentioned here, so per the text, you would simply choose the model based on in-sample RSS or $R^2$.



          Overfitting is (hopefully) controlled by the cross-validation in step 3.



          Of course, nothing keeps you from modifying the algorithm given in the book. Just note that you will then do a lot of cross-validation, since you would cross-validate $p-k$ models in each of $p$ iterations of step 2.






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            If I perform cross-validation in step 2, do I still need step 3 since I can just select the model with the smallest error from step 2?
            $endgroup$
            – southwind
            Jan 21 at 6:39










          • $begingroup$
            I would still do step 3. Even with cross-validation in step 2, adding another predictor may overfit. Note also that the result from step 2 is an entire collection of $p$ models with $0, dots, p-1$ predictors, and step 3 consists of choosing one of these models, for which you need some criterion, and cross-validation is a good one.
            $endgroup$
            – Stephan Kolassa
            Jan 21 at 9:27
















          2












          $begingroup$


          best is defined as having smallest RSS or highest R2.




          Cross-validation is not mentioned here, so per the text, you would simply choose the model based on in-sample RSS or $R^2$.



          Overfitting is (hopefully) controlled by the cross-validation in step 3.



          Of course, nothing keeps you from modifying the algorithm given in the book. Just note that you will then do a lot of cross-validation, since you would cross-validate $p-k$ models in each of $p$ iterations of step 2.






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            If I perform cross-validation in step 2, do I still need step 3 since I can just select the model with the smallest error from step 2?
            $endgroup$
            – southwind
            Jan 21 at 6:39










          • $begingroup$
            I would still do step 3. Even with cross-validation in step 2, adding another predictor may overfit. Note also that the result from step 2 is an entire collection of $p$ models with $0, dots, p-1$ predictors, and step 3 consists of choosing one of these models, for which you need some criterion, and cross-validation is a good one.
            $endgroup$
            – Stephan Kolassa
            Jan 21 at 9:27














          2












          2








          2





          $begingroup$


          best is defined as having smallest RSS or highest R2.




          Cross-validation is not mentioned here, so per the text, you would simply choose the model based on in-sample RSS or $R^2$.



          Overfitting is (hopefully) controlled by the cross-validation in step 3.



          Of course, nothing keeps you from modifying the algorithm given in the book. Just note that you will then do a lot of cross-validation, since you would cross-validate $p-k$ models in each of $p$ iterations of step 2.






          share|cite|improve this answer









          $endgroup$




          best is defined as having smallest RSS or highest R2.




          Cross-validation is not mentioned here, so per the text, you would simply choose the model based on in-sample RSS or $R^2$.



          Overfitting is (hopefully) controlled by the cross-validation in step 3.



          Of course, nothing keeps you from modifying the algorithm given in the book. Just note that you will then do a lot of cross-validation, since you would cross-validate $p-k$ models in each of $p$ iterations of step 2.







          share|cite|improve this answer












          share|cite|improve this answer



          share|cite|improve this answer










          answered Jan 21 at 6:07









          Stephan KolassaStephan Kolassa

          46k695167




          46k695167












          • $begingroup$
            If I perform cross-validation in step 2, do I still need step 3 since I can just select the model with the smallest error from step 2?
            $endgroup$
            – southwind
            Jan 21 at 6:39










          • $begingroup$
            I would still do step 3. Even with cross-validation in step 2, adding another predictor may overfit. Note also that the result from step 2 is an entire collection of $p$ models with $0, dots, p-1$ predictors, and step 3 consists of choosing one of these models, for which you need some criterion, and cross-validation is a good one.
            $endgroup$
            – Stephan Kolassa
            Jan 21 at 9:27


















          • $begingroup$
            If I perform cross-validation in step 2, do I still need step 3 since I can just select the model with the smallest error from step 2?
            $endgroup$
            – southwind
            Jan 21 at 6:39










          • $begingroup$
            I would still do step 3. Even with cross-validation in step 2, adding another predictor may overfit. Note also that the result from step 2 is an entire collection of $p$ models with $0, dots, p-1$ predictors, and step 3 consists of choosing one of these models, for which you need some criterion, and cross-validation is a good one.
            $endgroup$
            – Stephan Kolassa
            Jan 21 at 9:27
















          $begingroup$
          If I perform cross-validation in step 2, do I still need step 3 since I can just select the model with the smallest error from step 2?
          $endgroup$
          – southwind
          Jan 21 at 6:39




          $begingroup$
          If I perform cross-validation in step 2, do I still need step 3 since I can just select the model with the smallest error from step 2?
          $endgroup$
          – southwind
          Jan 21 at 6:39












          $begingroup$
          I would still do step 3. Even with cross-validation in step 2, adding another predictor may overfit. Note also that the result from step 2 is an entire collection of $p$ models with $0, dots, p-1$ predictors, and step 3 consists of choosing one of these models, for which you need some criterion, and cross-validation is a good one.
          $endgroup$
          – Stephan Kolassa
          Jan 21 at 9:27




          $begingroup$
          I would still do step 3. Even with cross-validation in step 2, adding another predictor may overfit. Note also that the result from step 2 is an entire collection of $p$ models with $0, dots, p-1$ predictors, and step 3 consists of choosing one of these models, for which you need some criterion, and cross-validation is a good one.
          $endgroup$
          – Stephan Kolassa
          Jan 21 at 9:27


















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f388317%2falgorithm-for-forward-stepwise-regression%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

          Mario Kart Wii

          What does “Dominus providebit” mean?

          Antonio Litta Visconti Arese