Should data be split into test / training prior to descriptive statistics being carried out on it?
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
add a comment |
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
add a comment |
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
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
categorical-data dataset descriptive-statistics
asked 19 hours ago
baxx
20219
20219
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
3
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
19 hours ago
What empirical evidence do you have to support the “20,000” sample size requirement? That seems a bit arbitrary.
– Jon
14 hours ago
I thought I was clear regarding which kinds of descriptive statistics are OK. Regarding the 20,000 that comes from work I did where a 17,000 patient dataset with 0.3 mortality was not large enough to prevent data splitting from giving an arbitrary result. I'm not saying the modeling and validation are fruitless here. I'm just saying that model building should not sacrifice sample size and model validation should use resampling methods, repeating all steps using Y afresh for each iteration.
– Frank Harrell
2 hours ago
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
3
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
19 hours ago
What empirical evidence do you have to support the “20,000” sample size requirement? That seems a bit arbitrary.
– Jon
14 hours ago
I thought I was clear regarding which kinds of descriptive statistics are OK. Regarding the 20,000 that comes from work I did where a 17,000 patient dataset with 0.3 mortality was not large enough to prevent data splitting from giving an arbitrary result. I'm not saying the modeling and validation are fruitless here. I'm just saying that model building should not sacrifice sample size and model validation should use resampling methods, repeating all steps using Y afresh for each iteration.
– Frank Harrell
2 hours ago
add a comment |
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.
3
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
19 hours ago
What empirical evidence do you have to support the “20,000” sample size requirement? That seems a bit arbitrary.
– Jon
14 hours ago
I thought I was clear regarding which kinds of descriptive statistics are OK. Regarding the 20,000 that comes from work I did where a 17,000 patient dataset with 0.3 mortality was not large enough to prevent data splitting from giving an arbitrary result. I'm not saying the modeling and validation are fruitless here. I'm just saying that model building should not sacrifice sample size and model validation should use resampling methods, repeating all steps using Y afresh for each iteration.
– Frank Harrell
2 hours ago
add a comment |
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.
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.
answered 19 hours ago
Frank Harrell
54.4k3106239
54.4k3106239
3
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
19 hours ago
What empirical evidence do you have to support the “20,000” sample size requirement? That seems a bit arbitrary.
– Jon
14 hours ago
I thought I was clear regarding which kinds of descriptive statistics are OK. Regarding the 20,000 that comes from work I did where a 17,000 patient dataset with 0.3 mortality was not large enough to prevent data splitting from giving an arbitrary result. I'm not saying the modeling and validation are fruitless here. I'm just saying that model building should not sacrifice sample size and model validation should use resampling methods, repeating all steps using Y afresh for each iteration.
– Frank Harrell
2 hours ago
add a comment |
3
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
19 hours ago
What empirical evidence do you have to support the “20,000” sample size requirement? That seems a bit arbitrary.
– Jon
14 hours ago
I thought I was clear regarding which kinds of descriptive statistics are OK. Regarding the 20,000 that comes from work I did where a 17,000 patient dataset with 0.3 mortality was not large enough to prevent data splitting from giving an arbitrary result. I'm not saying the modeling and validation are fruitless here. I'm just saying that model building should not sacrifice sample size and model validation should use resampling methods, repeating all steps using Y afresh for each iteration.
– Frank Harrell
2 hours ago
3
3
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
19 hours 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
19 hours ago
What empirical evidence do you have to support the “20,000” sample size requirement? That seems a bit arbitrary.
– Jon
14 hours ago
What empirical evidence do you have to support the “20,000” sample size requirement? That seems a bit arbitrary.
– Jon
14 hours ago
I thought I was clear regarding which kinds of descriptive statistics are OK. Regarding the 20,000 that comes from work I did where a 17,000 patient dataset with 0.3 mortality was not large enough to prevent data splitting from giving an arbitrary result. I'm not saying the modeling and validation are fruitless here. I'm just saying that model building should not sacrifice sample size and model validation should use resampling methods, repeating all steps using Y afresh for each iteration.
– Frank Harrell
2 hours ago
I thought I was clear regarding which kinds of descriptive statistics are OK. Regarding the 20,000 that comes from work I did where a 17,000 patient dataset with 0.3 mortality was not large enough to prevent data splitting from giving an arbitrary result. I'm not saying the modeling and validation are fruitless here. I'm just saying that model building should not sacrifice sample size and model validation should use resampling methods, repeating all steps using Y afresh for each iteration.
– Frank Harrell
2 hours ago
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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