Should data be split into test / training prior to descriptive statistics being carried out on it?












1














I have a data set that I have added to and plan to carry out some modelling with. I'm wondering whether I should split the data into test / training prior to carrying out the modelling, or if I should write the descriptive section out first then split into test/training for the modelling part.



The descriptive stuff is going to be things like percentiles, some $chi^2$ between different levels, basics like this.



The data is mainly categorical, there are around 700 rows and 30 columns.
I'm planning to carry out logistic regression and (probably) a decision tree.










share|cite|improve this question



























    1














    I have a data set that I have added to and plan to carry out some modelling with. I'm wondering whether I should split the data into test / training prior to carrying out the modelling, or if I should write the descriptive section out first then split into test/training for the modelling part.



    The descriptive stuff is going to be things like percentiles, some $chi^2$ between different levels, basics like this.



    The data is mainly categorical, there are around 700 rows and 30 columns.
    I'm planning to carry out logistic regression and (probably) a decision tree.










    share|cite|improve this question

























      1












      1








      1







      I have a data set that I have added to and plan to carry out some modelling with. I'm wondering whether I should split the data into test / training prior to carrying out the modelling, or if I should write the descriptive section out first then split into test/training for the modelling part.



      The descriptive stuff is going to be things like percentiles, some $chi^2$ between different levels, basics like this.



      The data is mainly categorical, there are around 700 rows and 30 columns.
      I'm planning to carry out logistic regression and (probably) a decision tree.










      share|cite|improve this question













      I have a data set that I have added to and plan to carry out some modelling with. I'm wondering whether I should split the data into test / training prior to carrying out the modelling, or if I should write the descriptive section out first then split into test/training for the modelling part.



      The descriptive stuff is going to be things like percentiles, some $chi^2$ between different levels, basics like this.



      The data is mainly categorical, there are around 700 rows and 30 columns.
      I'm planning to carry out logistic regression and (probably) a decision tree.







      categorical-data dataset descriptive-statistics






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked 46 mins ago









      baxx

      1929




      1929






















          1 Answer
          1






          active

          oldest

          votes


















          3














          Data splitting often requires a sample size exceeding 20,000 to work properly, i.e., to be stable. Otherwise re-splitting the data will result in arbitrary changes of the model and also of the validation stats. And note that decision trees are not competitive with logistic regression. The bootstrap or repeated cross-validation are preferred. See my RMS book and course notes.



          In terms of what you can do before model validation, anything that is masked to Y is fair game. So you can do descriptive statistics that do not examine associations between X and Y.






          share|cite|improve this answer

















          • 1




            Thank's Frank. So here you're suggesting suggesting that test/training with 700 rows is pointless? In your course notes though (Data splitting, 5.3.3 from : hbiostat.org/doc/rms.pdf) you give an example of a dataset with 300 elements, where the training is 200 and the test is 100. I'm still not too sure whether, in this example, you would carry out descriptive statistics on the data prior to splitting or not.
            – baxx
            16 mins 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
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f384454%2fshould-data-be-split-into-test-training-prior-to-descriptive-statistics-being%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









          3














          Data splitting often requires a sample size exceeding 20,000 to work properly, i.e., to be stable. Otherwise re-splitting the data will result in arbitrary changes of the model and also of the validation stats. And note that decision trees are not competitive with logistic regression. The bootstrap or repeated cross-validation are preferred. See my RMS book and course notes.



          In terms of what you can do before model validation, anything that is masked to Y is fair game. So you can do descriptive statistics that do not examine associations between X and Y.






          share|cite|improve this answer

















          • 1




            Thank's Frank. So here you're suggesting suggesting that test/training with 700 rows is pointless? In your course notes though (Data splitting, 5.3.3 from : hbiostat.org/doc/rms.pdf) you give an example of a dataset with 300 elements, where the training is 200 and the test is 100. I'm still not too sure whether, in this example, you would carry out descriptive statistics on the data prior to splitting or not.
            – baxx
            16 mins ago
















          3














          Data splitting often requires a sample size exceeding 20,000 to work properly, i.e., to be stable. Otherwise re-splitting the data will result in arbitrary changes of the model and also of the validation stats. And note that decision trees are not competitive with logistic regression. The bootstrap or repeated cross-validation are preferred. See my RMS book and course notes.



          In terms of what you can do before model validation, anything that is masked to Y is fair game. So you can do descriptive statistics that do not examine associations between X and Y.






          share|cite|improve this answer

















          • 1




            Thank's Frank. So here you're suggesting suggesting that test/training with 700 rows is pointless? In your course notes though (Data splitting, 5.3.3 from : hbiostat.org/doc/rms.pdf) you give an example of a dataset with 300 elements, where the training is 200 and the test is 100. I'm still not too sure whether, in this example, you would carry out descriptive statistics on the data prior to splitting or not.
            – baxx
            16 mins ago














          3












          3








          3






          Data splitting often requires a sample size exceeding 20,000 to work properly, i.e., to be stable. Otherwise re-splitting the data will result in arbitrary changes of the model and also of the validation stats. And note that decision trees are not competitive with logistic regression. The bootstrap or repeated cross-validation are preferred. See my RMS book and course notes.



          In terms of what you can do before model validation, anything that is masked to Y is fair game. So you can do descriptive statistics that do not examine associations between X and Y.






          share|cite|improve this answer












          Data splitting often requires a sample size exceeding 20,000 to work properly, i.e., to be stable. Otherwise re-splitting the data will result in arbitrary changes of the model and also of the validation stats. And note that decision trees are not competitive with logistic regression. The bootstrap or repeated cross-validation are preferred. See my RMS book and course notes.



          In terms of what you can do before model validation, anything that is masked to Y is fair game. So you can do descriptive statistics that do not examine associations between X and Y.







          share|cite|improve this answer












          share|cite|improve this answer



          share|cite|improve this answer










          answered 24 mins ago









          Frank Harrell

          54.4k3106239




          54.4k3106239








          • 1




            Thank's Frank. So here you're suggesting suggesting that test/training with 700 rows is pointless? In your course notes though (Data splitting, 5.3.3 from : hbiostat.org/doc/rms.pdf) you give an example of a dataset with 300 elements, where the training is 200 and the test is 100. I'm still not too sure whether, in this example, you would carry out descriptive statistics on the data prior to splitting or not.
            – baxx
            16 mins ago














          • 1




            Thank's Frank. So here you're suggesting suggesting that test/training with 700 rows is pointless? In your course notes though (Data splitting, 5.3.3 from : hbiostat.org/doc/rms.pdf) you give an example of a dataset with 300 elements, where the training is 200 and the test is 100. I'm still not too sure whether, in this example, you would carry out descriptive statistics on the data prior to splitting or not.
            – baxx
            16 mins ago








          1




          1




          Thank's Frank. So here you're suggesting suggesting that test/training with 700 rows is pointless? In your course notes though (Data splitting, 5.3.3 from : hbiostat.org/doc/rms.pdf) you give an example of a dataset with 300 elements, where the training is 200 and the test is 100. I'm still not too sure whether, in this example, you would carry out descriptive statistics on the data prior to splitting or not.
          – baxx
          16 mins ago




          Thank's Frank. So here you're suggesting suggesting that test/training with 700 rows is pointless? In your course notes though (Data splitting, 5.3.3 from : hbiostat.org/doc/rms.pdf) you give an example of a dataset with 300 elements, where the training is 200 and the test is 100. I'm still not too sure whether, in this example, you would carry out descriptive statistics on the data prior to splitting or not.
          – baxx
          16 mins ago


















          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.





          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%2f384454%2fshould-data-be-split-into-test-training-prior-to-descriptive-statistics-being%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

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'