Re: [Rd] [R] string problems with "\\" (Windows)

2006-07-09 Thread Gabor Grothendieck
Moved to r-devel. Perhaps basename should take an optional separator argument so that basename(x, "\\") could be used to override the default behavior. On 7/9/06, Duncan Murdoch <[EMAIL PROTECTED]> wrote: > basename() works. If you're on a system that doesn't think \\ is a path > separator,

[Rd] vignette("introduction") causes "Error in sprintf(" (PR#9069)

2006-07-09 Thread chris
Full_Name: Chris Evans Version: 2.3.1 OS: Windoze XP Submission from: (NULL) (217.34.100.197) If I give "vignette("introduction")" I get: Error in sprintf(gettext(fmt, domain = domain), ...) : use format %s for character objects vignette() works for some other vignettes and "vignette

Re: [Rd] vignette("introduction") causes "Error in sprintf(" (PR#9069)

2006-07-09 Thread Gabor Grothendieck
Same for me. Looking through the output of vignette I noticed that both the ggplot and reshape packages have a vignette called "introduction" in my case and either of the following brings up the associated vignette (as opposed to the error message): vignette("introduction", "ggplot") vignette("in

Re: [Rd] vignette("introduction") causes "Error in sprintf(" (PR#9069)

2006-07-09 Thread Chris Evans
Gabor Grothendieck sent the following at 09/07/2006 19:02: > Same for me. Looking through the output of vignette > I noticed that both the ggplot and reshape packages have > a vignette called "introduction" in my case and either of > the following brings up the associated vignette (as opposed > t

Re: [Rd] vignette("introduction") causes "Error in sprintf(" (PR#9069)

2006-07-09 Thread Gabor Grothendieck
If there are no other instances of multiple vignettes with the same name perhaps the fastest solution is just for the author of those two vignettes to change them to each be unique. On 7/9/06, Chris Evans <[EMAIL PROTECTED]> wrote: > Gabor Grothendieck sent the following at 09/07/2006 19:02: > >

[Rd] Unexpected difference in Bounding Box of PDF graphics between 2.3.1p and 2.4 (PR#9070)

2006-07-09 Thread huber
Full_Name: Wolfgang Huber Version: R version 2.4.0 Under development (unstable) (2006-07-09 r38523) OS: i686-pc-linux-gnu Submission from: (NULL) (62.253.128.15) There appears to be unintentional behaviour in the size of the bounding box for PDF graphics produced with the current R2.4, compa

Re: [Rd] [R] string problems with "\\" (Windows)

2006-07-09 Thread Duncan Murdoch
Gabor Grothendieck wrote: > Moved to r-devel. > > Perhaps basename should take an optional separator argument > so that > >basename(x, "\\") > > could be used to override the default behavior. > That seems like a reasonable idea, but not very high priority. Anyone want to contribute a pat