Re: [R] add data to a file while doing a loop

2012-01-06 Thread Sander Timmer
So you're looking for:

write.table(dataset, file=x.txt, append=TRUE)

Or do I understand your question wrongly? 


__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Regular expression substitution ...

2009-11-02 Thread Sander Timmer

It's a bit strange:

 sub(/pc, '\\%', x)
[1] %

 sub(/pc, '%', x)
[1] \\%

Also with fixed I'm not able to get a single \ as return value.

Sander

On 2 nov 2009, at 12:36, Roberto Brunelli wrote:


I would like to replace all occurences of

   /pc

with

  \%

using something like

sub(/pc, \%, x)

but I am unable to make the '\' pass through.

Any hint?

Thanks,

Roberto

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.