Re: [R] Remove double quotation marks

2009-12-29 Thread Lisa
Or, if you know your variables in the data.frame will be named > sequentially > >> df[, c(1, 2, x)] > > > -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] > On Behalf Of Lisa > Sent: Tuesday, December 29, 2009 3:55 PM

Re: [R] Remove double quotation marks

2009-12-29 Thread Nutter, Benjamin
help-boun...@r-project.org] On Behalf Of Lisa Sent: Tuesday, December 29, 2009 3:55 PM To: r-help@r-project.org Subject: Re: [R] Remove double quotation marks Thank you for your help. But here I just want to combine some vectors by column based on the numbers determined by other R script. For exa

Re: [R] Remove double quotation marks

2009-12-29 Thread Lisa
Thanks. I also need column name "v5". Lisa jholtman wrote: > > ?get > > something like: > >> v1 <- c(0, 1, 0) >> v2 <- c(1, 1, 0) >> v3 <- c(2, 1, 2) >> v4 <- c(2, 2, 1) >> v5 <- c(0, 1, 1) >> x <- 5 >> cbind(v1, v2, get(paste('v', x, sep=''))) > v1 v2 > [1,] 0 1 0 > [2,] 1 1 1 > [

Re: [R] Remove double quotation marks

2009-12-29 Thread jim holtman
?get something like: > v1 <- c(0, 1, 0) > v2 <- c(1, 1, 0) > v3 <- c(2, 1, 2) > v4 <- c(2, 2, 1) > v5 <- c(0, 1, 1) > x <- 5 > cbind(v1, v2, get(paste('v', x, sep=''))) v1 v2 [1,] 0 1 0 [2,] 1 1 1 [3,] 0 0 1 > On Tue, Dec 29, 2009 at 3:54 PM, Lisa wrote: > > Thank you for your help

Re: [R] Remove double quotation marks

2009-12-29 Thread Lisa
Thank you for your help. But here I just want to combine some vectors by column based on the numbers determined by other R script. For example, I have five vectors: v1 <- c(0, 1, 0) v2 <- c(1, 1, 0) v3 <- c(2, 1, 2) v4 <- c(2, 2, 1) v5 <- c(0, 1, 1) If I am going to combine the first two vecto

Re: [R] Remove double quotation marks

2009-12-29 Thread Barry Rowlingson
On Tue, Dec 29, 2009 at 6:31 PM, Lisa wrote: > > Thank you for your reply. But in the following case, “cat()” or “print()” > doesn’t work. > > data.frame(cbind(variable 1, variable 2, cat(paste("variable", x), "\n"))), > where x is a random number generated by other R script. > > Lisa Yes, becau

Re: [R] Remove double quotation marks

2009-12-29 Thread Lisa
Thank you for your reply. But in the following case, “cat()” or “print()” doesn’t work. data.frame(cbind(variable 1, variable 2, cat(paste("variable", x), "\n"))), where x is a random number generated by other R script. Lisa Duncan Murdoch wrote: > > On 29/12/2009 1:16 PM, Lisa wrote: >> De

Re: [R] Remove double quotation marks

2009-12-29 Thread Duncan Murdoch
On 29/12/2009 1:16 PM, Lisa wrote: Dear All, I am not sure how to remove double quotation marks in a string, e.g., paste("variable", 1). Can anybody please help me solve it? Thank you in advance. I think you need to tell us what is wrong with what you get from that. When I look at the result:

[R] Remove double quotation marks

2009-12-29 Thread Lisa
Dear All, I am not sure how to remove double quotation marks in a string, e.g., paste("variable", 1). Can anybody please help me solve it? Thank you in advance. Lisa -- View this message in context: http://n4.nabble.com/Remove-double-quotation-marks-tp990502p990502.html Sent from the R help ma