Dear R Usergroup, I have the following vector and I would like to split it on ",". How can I do this?> u[1] "160798191,160802762,160813395,160816017,160817873,160824082,160825247,160826925,160834272,160836257," Thank you in advance! With my best regards, Georg. ************************************ Georg Ehret Baltimore USA [[alternative HTML version deleted]]
?strsplit On Sun, 4 May 2008, Georg Ehret wrote:> Dear R Usergroup, > I have the following vector and I would like to split it on ",". > How can I do this? >> u > [1] > "160798191,160802762,160813395,160816017,160817873,160824082,160825247,160826925,160834272,160836257," > > Thank you in advance! > With my best regards, Georg. > ************************************ > Georg Ehret > Baltimore > USA > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at 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. >_________________________________________________________________ David Scott Department of Statistics, Tamaki Campus The University of Auckland, PB 92019 Auckland 1142, NEW ZEALAND Phone: +64 9 373 7599 ext 86830 Fax: +64 9 373 7000 Email: d.scott at auckland.ac.nz Graduate Officer, Department of Statistics Director of Consulting, Department of Statistics
Try: scan(textConnection(u), sep=",") On Mon, May 5, 2008 at 12:59 AM, Georg Ehret <georgehret@gmail.com> wrote:> Dear R Usergroup, > I have the following vector and I would like to split it on ",". > How can I do this? > > u > [1] > > "160798191,160802762,160813395,160816017,160817873,160824082,160825247,160826925,160834272,160836257," > > Thank you in advance! > With my best regards, Georg. > ************************************ > Georg Ehret > Baltimore > USA > > [[alternative HTML version deleted]] > > ______________________________________________ > 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. >-- Henrique Dallazuanna Curitiba-Paraná-Brasil 25° 25' 40" S 49° 16' 22" O [[alternative HTML version deleted]]