Aggregate Analysis of a CSV file
I work with a lot of large CSV files, sometimes upwards of 10 GB, upon which I need to do aggregate analysis (e.g. Min and Max length of data in a column, is every field in a column numeric, is every field in a column in an ISO date format).
With smaller files, I copy and paste into Excel, but once things approach 100 MB of CSV data, Excel can become unwieldy.
Let me try an example.
Say I have a CSV file that contains the following.
FirstName,LastName,BirthDate,Caseload
Bob,Jones,1966-10-22,38
Alice,Smith,1971-03-10,41
Darren,Wilson,1962-04-18,49
The desired output would be another CSV file like this.
column_name,min,max,all_numeric,all_dates
FirstName,3,6,N,N
LastName,5,6,N,N
BirthDate,10,10,N,Y
Caseload,2,2,Y,N
It would have to scale and work with a 10 GB CSV file. I'm thinking a script like Python is the way, if I really want it to be customized with precisely this output. However, a tool, even one I have to pay for, would be desirable. I just don't know what to call such a tool to search for it, if such a tool exists.
python csv
add a comment |
I work with a lot of large CSV files, sometimes upwards of 10 GB, upon which I need to do aggregate analysis (e.g. Min and Max length of data in a column, is every field in a column numeric, is every field in a column in an ISO date format).
With smaller files, I copy and paste into Excel, but once things approach 100 MB of CSV data, Excel can become unwieldy.
Let me try an example.
Say I have a CSV file that contains the following.
FirstName,LastName,BirthDate,Caseload
Bob,Jones,1966-10-22,38
Alice,Smith,1971-03-10,41
Darren,Wilson,1962-04-18,49
The desired output would be another CSV file like this.
column_name,min,max,all_numeric,all_dates
FirstName,3,6,N,N
LastName,5,6,N,N
BirthDate,10,10,N,Y
Caseload,2,2,Y,N
It would have to scale and work with a 10 GB CSV file. I'm thinking a script like Python is the way, if I really want it to be customized with precisely this output. However, a tool, even one I have to pay for, would be desirable. I just don't know what to call such a tool to search for it, if such a tool exists.
python csv
You might want to have a look at XSV - a command-line CSV toolkit.
– Mike Fitzpatrick
Dec 13 '18 at 3:26
add a comment |
I work with a lot of large CSV files, sometimes upwards of 10 GB, upon which I need to do aggregate analysis (e.g. Min and Max length of data in a column, is every field in a column numeric, is every field in a column in an ISO date format).
With smaller files, I copy and paste into Excel, but once things approach 100 MB of CSV data, Excel can become unwieldy.
Let me try an example.
Say I have a CSV file that contains the following.
FirstName,LastName,BirthDate,Caseload
Bob,Jones,1966-10-22,38
Alice,Smith,1971-03-10,41
Darren,Wilson,1962-04-18,49
The desired output would be another CSV file like this.
column_name,min,max,all_numeric,all_dates
FirstName,3,6,N,N
LastName,5,6,N,N
BirthDate,10,10,N,Y
Caseload,2,2,Y,N
It would have to scale and work with a 10 GB CSV file. I'm thinking a script like Python is the way, if I really want it to be customized with precisely this output. However, a tool, even one I have to pay for, would be desirable. I just don't know what to call such a tool to search for it, if such a tool exists.
python csv
I work with a lot of large CSV files, sometimes upwards of 10 GB, upon which I need to do aggregate analysis (e.g. Min and Max length of data in a column, is every field in a column numeric, is every field in a column in an ISO date format).
With smaller files, I copy and paste into Excel, but once things approach 100 MB of CSV data, Excel can become unwieldy.
Let me try an example.
Say I have a CSV file that contains the following.
FirstName,LastName,BirthDate,Caseload
Bob,Jones,1966-10-22,38
Alice,Smith,1971-03-10,41
Darren,Wilson,1962-04-18,49
The desired output would be another CSV file like this.
column_name,min,max,all_numeric,all_dates
FirstName,3,6,N,N
LastName,5,6,N,N
BirthDate,10,10,N,Y
Caseload,2,2,Y,N
It would have to scale and work with a 10 GB CSV file. I'm thinking a script like Python is the way, if I really want it to be customized with precisely this output. However, a tool, even one I have to pay for, would be desirable. I just don't know what to call such a tool to search for it, if such a tool exists.
python csv
python csv
asked Dec 13 '18 at 1:29
Kennah
1215
1215
You might want to have a look at XSV - a command-line CSV toolkit.
– Mike Fitzpatrick
Dec 13 '18 at 3:26
add a comment |
You might want to have a look at XSV - a command-line CSV toolkit.
– Mike Fitzpatrick
Dec 13 '18 at 3:26
You might want to have a look at XSV - a command-line CSV toolkit.
– Mike Fitzpatrick
Dec 13 '18 at 3:26
You might want to have a look at XSV - a command-line CSV toolkit.
– Mike Fitzpatrick
Dec 13 '18 at 3:26
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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: 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
});
}
});
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%2fsuperuser.com%2fquestions%2f1383163%2faggregate-analysis-of-a-csv-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- 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.
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%2fsuperuser.com%2fquestions%2f1383163%2faggregate-analysis-of-a-csv-file%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
You might want to have a look at XSV - a command-line CSV toolkit.
– Mike Fitzpatrick
Dec 13 '18 at 3:26