Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I have a table with comma delimited columns and I need to convert the comma delimited values to new rows. for exmaple the given table is

Name Start End

A 1,2,3 4,5,6

B 1,2 4,5

C 1,2,3,4 6,7,8,9

I need to convert it like

Name Start End

A 1 4

A 2 5

A 3 6

B 1 4

B 2 5

C 1 6

C 2 7

C 3 8

C 4 9

I can do that using VB script but I need to solve it using R Can anyone solve this?

share|improve this question
2  
This question belongs on an R language server, not here. – whuber Feb 9 '11 at 18:56
read the file with read.csv and write with write.table, convert to appropriate format with melt. This question is similar to your most recent questions, it really does not belong here. Please ask in stackoverflow. – mpiktas Feb 9 '11 at 19:28
Oh ok. I'm new to R thought CV is an R community. Will follow it next time :) – Jana Feb 9 '11 at 19:49
2  
welcome to the site! With regard to CV vs SO, there is some overlap in terms of active members on each site and the types of questions that are appropriate on each site. See this post for some of that discussion. CV is certainly an R community (highest tag on the site) but the questions are generally more grounded in statistical questions or an R implementation of those questions. SO deals more with the programming with R side of the equation...though it's certainly shades of gray. – Chase Feb 9 '11 at 19:58

migrated from stats.stackexchange.com Sep 18 '12 at 16:44

2 Answers

up vote 2 down vote accepted

Here's an approach that should work for you. I'm assuming that your three input vectors are in different objects. We are going to create a list of those inputs and write a function that process each object and returns them in the form of a data.frame with plyr.

The things to take note of here are the splitting of the character vector into it's component parts, then using as.numeric to convert the numbers from the character form when they were split. Since R fills matrices by column, we define a 2 column matrix and let R fill the values for us. We then retrieve the Name column and put it all together in a data.frame. plyr is nice enough to process the list and convert it into a data.frame for us automatically.

library(plyr)

a <- paste("A",1, 2,3,4,5,6, sep = ",", collapse = "")
b <- paste("B",1, 2,4,5, sep = ",", collapse = "")
c <- paste("C",1, 2,3,4,6,7,8,9, sep = ",", collapse = "")

input <- list(a,b,c)

splitter <- function(x) {
    x <- unlist(strsplit(x, ","))
    out <- data.frame(x[1], matrix(as.numeric(x[-1]), ncol = 2))
    colnames(out) <- c("Name", "Start", "End")
    return(out)
}


ldply(input, splitter)

And the output:

> ldply(input, splitter)
 Name Start End
1    A     1   4
2    A     2   5
3    A     3   6
4    B     1   4
5    B     2   5
6    C     1   6
7    C     2   7
8    C     3   8
9    C     4   9
share|improve this answer

You might have asked this question on SO as there is no issue dealing with statistics :)

Anyway, I made up a quite complicated and ugly solution which might work for you:

# load your data
x <- structure(list(Name = c("A", "B", "C"), Start = c("1,2,3", "1,2", 
"1,2,3,4"), End = c("4,5,6", "4,5", "6,7,8,9")), .Names = c("Name", 
"Start", "End"), row.names = c(NA, -3L), class = "data.frame")

Which looks like in R like:

> x
  Name   Start     End length
1    A   1,2,3   4,5,6      3
2    B     1,2     4,5      2
3    C 1,2,3,4 6,7,8,9      4

Data transformation with the help of strsplit calls:

data <- data.frame(cbind(
    rep(x$Name,as.numeric(lapply(strsplit(x$Start,","), length))),
    unlist(lapply(strsplit(x$Start,","), cbind)),
    unlist(lapply(strsplit(x$End,","), cbind))
    ))

Naming the new data frame:

names(data) <- c("Name", "Start", "End")

Which looks like:

> data
  Name Start End
1    A     1   4
2    A     2   5
3    A     3   6
4    B     1   4
5    B     2   5
6    C     1   6
7    C     2   7
8    C     3   8
9    C     4   9
share|improve this answer
"I made up a quite complicated and ugly solution which might work for you" Thanks for making me smile. ;-) – Joshua Ulrich Feb 9 '11 at 20:25
@Joshua Ulrich: I am happy that my answer had a nice effect :) – daroczig Feb 9 '11 at 22:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.