Data frame writes to a single column in write.csv/write.table R
I'm trying to write a csv file (I would use write.xlsx, but for some reason that was giving me Java memory errors.... no matter, I'll do this instead), but if I used the following data frame:
id <- c(1,2,3,4,5)
email <- c('jim@chase.com','steve@aol.com','stacy@gmail.com/','chris@yahoo.com','emilio@verizon.net/')
sample <- data.frame(id,email)
write.table(sample, 'Me\Raw List.csv',
row.names = TRUE, col.names = TRUE, append = FALSE)
I get the data all in a single-column CSV, along with a row identifier like this:
id "email"
1 1 "jim@chase.com"
2 2 "steve@aol.com"
3 3 "stacy@gmail.com/"
4 4 "chris@yahoo.com"
5 5 "emilio@verizon.net/"
My question is two-part: 1) How do I separate this data into columns; and 2) How do I remove the row identifiers so that I can just use my id?
r export export-to-csv
add a comment |
I'm trying to write a csv file (I would use write.xlsx, but for some reason that was giving me Java memory errors.... no matter, I'll do this instead), but if I used the following data frame:
id <- c(1,2,3,4,5)
email <- c('jim@chase.com','steve@aol.com','stacy@gmail.com/','chris@yahoo.com','emilio@verizon.net/')
sample <- data.frame(id,email)
write.table(sample, 'Me\Raw List.csv',
row.names = TRUE, col.names = TRUE, append = FALSE)
I get the data all in a single-column CSV, along with a row identifier like this:
id "email"
1 1 "jim@chase.com"
2 2 "steve@aol.com"
3 3 "stacy@gmail.com/"
4 4 "chris@yahoo.com"
5 5 "emilio@verizon.net/"
My question is two-part: 1) How do I separate this data into columns; and 2) How do I remove the row identifiers so that I can just use my id?
r export export-to-csv
add a comment |
I'm trying to write a csv file (I would use write.xlsx, but for some reason that was giving me Java memory errors.... no matter, I'll do this instead), but if I used the following data frame:
id <- c(1,2,3,4,5)
email <- c('jim@chase.com','steve@aol.com','stacy@gmail.com/','chris@yahoo.com','emilio@verizon.net/')
sample <- data.frame(id,email)
write.table(sample, 'Me\Raw List.csv',
row.names = TRUE, col.names = TRUE, append = FALSE)
I get the data all in a single-column CSV, along with a row identifier like this:
id "email"
1 1 "jim@chase.com"
2 2 "steve@aol.com"
3 3 "stacy@gmail.com/"
4 4 "chris@yahoo.com"
5 5 "emilio@verizon.net/"
My question is two-part: 1) How do I separate this data into columns; and 2) How do I remove the row identifiers so that I can just use my id?
r export export-to-csv
I'm trying to write a csv file (I would use write.xlsx, but for some reason that was giving me Java memory errors.... no matter, I'll do this instead), but if I used the following data frame:
id <- c(1,2,3,4,5)
email <- c('jim@chase.com','steve@aol.com','stacy@gmail.com/','chris@yahoo.com','emilio@verizon.net/')
sample <- data.frame(id,email)
write.table(sample, 'Me\Raw List.csv',
row.names = TRUE, col.names = TRUE, append = FALSE)
I get the data all in a single-column CSV, along with a row identifier like this:
id "email"
1 1 "jim@chase.com"
2 2 "steve@aol.com"
3 3 "stacy@gmail.com/"
4 4 "chris@yahoo.com"
5 5 "emilio@verizon.net/"
My question is two-part: 1) How do I separate this data into columns; and 2) How do I remove the row identifiers so that I can just use my id?
r export export-to-csv
r export export-to-csv
asked Nov 21 '18 at 15:24
Yehuda
165112
165112
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
write.table()'s standard separator is " " (check the docs).
Use write.csv() or write.csv2() along with the parameter row.names=False instead.
write.csv(sample,file = "my_dir/my_file.csv", row.names=F)
row.names=F makes that a unique row identifier (basically an id like you have it) will not be written.
You may use write.table() as well but you'll have to pass additional parameters:
write.table(sample, file = "test.csv", row.names=F, sep=",", dec=".")
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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%2fstackoverflow.com%2fquestions%2f53415274%2fdata-frame-writes-to-a-single-column-in-write-csv-write-table-r%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
write.table()'s standard separator is " " (check the docs).
Use write.csv() or write.csv2() along with the parameter row.names=False instead.
write.csv(sample,file = "my_dir/my_file.csv", row.names=F)
row.names=F makes that a unique row identifier (basically an id like you have it) will not be written.
You may use write.table() as well but you'll have to pass additional parameters:
write.table(sample, file = "test.csv", row.names=F, sep=",", dec=".")
add a comment |
write.table()'s standard separator is " " (check the docs).
Use write.csv() or write.csv2() along with the parameter row.names=False instead.
write.csv(sample,file = "my_dir/my_file.csv", row.names=F)
row.names=F makes that a unique row identifier (basically an id like you have it) will not be written.
You may use write.table() as well but you'll have to pass additional parameters:
write.table(sample, file = "test.csv", row.names=F, sep=",", dec=".")
add a comment |
write.table()'s standard separator is " " (check the docs).
Use write.csv() or write.csv2() along with the parameter row.names=False instead.
write.csv(sample,file = "my_dir/my_file.csv", row.names=F)
row.names=F makes that a unique row identifier (basically an id like you have it) will not be written.
You may use write.table() as well but you'll have to pass additional parameters:
write.table(sample, file = "test.csv", row.names=F, sep=",", dec=".")
write.table()'s standard separator is " " (check the docs).
Use write.csv() or write.csv2() along with the parameter row.names=False instead.
write.csv(sample,file = "my_dir/my_file.csv", row.names=F)
row.names=F makes that a unique row identifier (basically an id like you have it) will not be written.
You may use write.table() as well but you'll have to pass additional parameters:
write.table(sample, file = "test.csv", row.names=F, sep=",", dec=".")
edited Nov 21 '18 at 15:32
answered Nov 21 '18 at 15:26
Ben T.
3017
3017
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f53415274%2fdata-frame-writes-to-a-single-column-in-write-csv-write-table-r%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