Re: [R] How to unquote string in R

2010-11-03 Thread Erik Iverson
lord12 wrote: s= "Hey" a = "Hello" table = rbind(s,a) write.table(table,paste("blah",".PROPERTIES",sep = ""),row.names = FALSE,col.names = FALSE) In my table, how do I output only the words and not the words with the quotations? You read the help page for the function you're using :). Fro

Re: [R] How to unquote string in R

2010-11-03 Thread Henrique Dallazuanna
Put the quote = FALSE argument in write.table On Wed, Nov 3, 2010 at 2:13 PM, lord12 wrote: > > > s= "Hey" > a = "Hello" > table = rbind(s,a) > write.table(table,paste("blah",".PROPERTIES",sep = ""),row.names = > FALSE,col.names = FALSE) > > In my table, how do I output only the words and not th