[R] Problems with paste and blank

2007-10-17 Thread thomas.schwander
Hi there, I've got the following problem under Windows XP, R 2.5.1: When I'm pasting some objects: Stadtwerksname-Mannheim Laufwerk-C:\\ paste(Laufwerk,Stadtwerksname,.csv) I get the result: [1] C:\\ Mannheim .csv The problem's are the superfluous gaps/blanks between the three parts. Is

Re: [R] Problems with paste and blank

2007-10-17 Thread Henrique Dallazuanna
See the argument 'sep' in the paste function. paste(Laufwerk,Stadtwerksname,.csv, sep=) On 17/10/2007, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi there, I've got the following problem under Windows XP, R 2.5.1: When I'm pasting some objects: Stadtwerksname-Mannheim Laufwerk-C:\\

Re: [R] Problems with paste and blank

2007-10-17 Thread Katharine Mullen
use sep=, e.g., paste(Laufwerk,Stadtwerksname,.csv,sep=) On Wed, 17 Oct 2007 [EMAIL PROTECTED] wrote: Hi there, I've got the following problem under Windows XP, R 2.5.1: When I'm pasting some objects: Stadtwerksname-Mannheim Laufwerk-C:\\ paste(Laufwerk,Stadtwerksname,.csv) I get

Re: [R] Problems with paste and blank

2007-10-17 Thread Dimitris Rizopoulos
]; [EMAIL PROTECTED] Sent: Wednesday, October 17, 2007 1:51 PM Subject: Re: [R] Problems with paste and blank See the argument 'sep' in the paste function. paste(Laufwerk,Stadtwerksname,.csv, sep=) On 17/10/2007, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi there, I've got the following problem