Skip to main content

All Questions

Tagged with
1 vote
1 answer
658 views

Printing several pieces of output to the same CSV in R?

I am using the TraMineR package. I am printing output to a CSV file, like this: write.csv(seqient(sequences.seq), file = "diversity_measures.csv", quote = FALSE, na = "", row.names = TRUE) write.csv(...
histelheim's user avatar
  • 5,018
1 vote
1 answer
504 views

Cutting a CSV file up into different columns using R

This is a follow up question to Pivoting a CSV file using R. In that question, I wanted to cut up a single column (type) into several columns based on the values in column (repository_name). The ...
histelheim's user avatar
  • 5,018
2 votes
3 answers
1k views

Pivoting a CSV file using R

I have a file that looks like this: type created_at repository_name 1 IssuesEvent 2012-03-11 06:48:31 bootstrap 2 IssuesEvent 2012-03-11 06:48:31 ...
histelheim's user avatar
  • 5,018