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

Is it possible to append a column to data frame in the following scenario?

dfWithData <- data.frame(start=c(1,2,3), end=c(11,22,33))
dfBlank <- data.frame()

..how to append column start from dfWithData to dfBlank?

It looks like the data should be added when data frame is being initialized. I can do this:

dfBlank <- data.frame(dfWithData[1])

but I am more interested if it is possible to append columns to an empty (but inti)

share|improve this question
The more important question is why are you creating an empty data frame and then trying to populate it? The correct solution to this problem will likely avoid that step entirely. – joran Aug 28 '12 at 15:27
@joran: I can be wrong. I am just learning R. So, would you suggest doing this at the initialization point? i.e. the second approach – articSnail Aug 28 '12 at 15:31
Probably. But it's hard to say unless you back up a bit and explain why you're doing this. – joran Aug 28 '12 at 15:37
@joran: Ok sure. So I am querying the database using RODBC (which returns data frame as result). This data frame contains 4 (say A,b,C and D) columns from the database. I need to extract columns A,B,C and A,B,D columns from the data frame and stick them in different excel files. This is why I create 2 empty data frames and fill respective columns – articSnail Aug 28 '12 at 15:40
3  
Just subset the data frame from the RODBC output: df[,c('A','B','D')], etc. – joran Aug 28 '12 at 15:41
show 1 more comment

migrated from stats.stackexchange.com Aug 28 '12 at 15:09

2 Answers

up vote 2 down vote accepted

I would suggest simply subsetting the data frame you get back from the RODBC call. Something like:

df[,c('A','B','D')]

perhaps, or you can also subset the columns you want with their numerical position, i.e.

df[,c(1,2,4)]
share|improve this answer
dfBlank[1:nrow(dfWithData),"start"] <- dfWithData$start
share|improve this answer
It doesn't seem to be working for me. I get the error Error in "$<-.data.frame(*tmp*, "start", value = c(1, 2, 3)) : replacement has 3 rows, data has 0 – articSnail Aug 28 '12 at 15:17
Whoops, I didn't check my solution. Back to the drawing board. – Blue Magister Aug 28 '12 at 15:21
@darkie15 Edited - you need to specify the row numbers you are changing. Try it now. – Blue Magister Aug 28 '12 at 15:23
Still does not work !! I don't think you can reference a column that does not exist in first place i.e. dfBlank$start – articSnail Aug 28 '12 at 15:31
I think you're right. You'd need to subset with brackets. I've edited again. Echoing joran, normally you don't create empty data frames and fill them with data - you will create them at the point of initialization from functions like read.csv or data.frame. – Blue Magister Aug 28 '12 at 15:37
show 1 more comment

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.