Keith Ponting
2008-Nov-14 16:37 UTC
[R] dir.create only gives first character of name when warning
This is not a major issue, but is there any way to get the full directory name out when dir.create issues a warning? I am running R 2.8.0 patched on Windows Vista - full details below. With the following code: dir.create("test") obscure<-"test" dir.create(obscure) I get the warning message: In dir.create(obscure) : 't' already exists Session details: R version 2.8.0 Patched (2008-10-21 r46766) Copyright (C) 2008 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R.> dir.create("test") > obscure<-"test" > dir.create(obscure)Warning message: In dir.create(obscure) : 't' already exists> sessionInfo()R version 2.8.0 Patched (2008-10-21 r46766) i386-pc-mingw32 locale: LC_COLLATE=English_United Kingdom.1252;LC_CTYPE=English_United Kingdom.1252;LC_MONETARY=English_United Kingdom.1252;LC_NUMERIC=C;LC_TIME=English_United Kingdom.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base Thanks in advance, Keith Ponting Aurix Ltd, Malvern WR14 3SZ UK
Prof Brian Ripley
2008-Nov-14 17:53 UTC
[R] dir.create only gives first character of name when warning
You are running an outdated R-patched. The current version's CHANGES file says o dir.create() did not print the path correctly in warning messages. and your example works for me. On Fri, 14 Nov 2008, Keith Ponting wrote:> This is not a major issue, but is there any way to get the full > directory name out when dir.create issues a warning? > I am running R 2.8.0 patched on Windows Vista - full details below. > > With the following code: > dir.create("test") > obscure<-"test" > dir.create(obscure) > I get the warning message: > In dir.create(obscure) : 't' already exists > > Session details: > > R version 2.8.0 Patched (2008-10-21 r46766) > Copyright (C) 2008 The R Foundation for Statistical Computing > ISBN 3-900051-07-0 > > R is free software and comes with ABSOLUTELY NO WARRANTY. > You are welcome to redistribute it under certain conditions. > Type 'license()' or 'licence()' for distribution details. > > Natural language support but running in an English locale > > R is a collaborative project with many contributors. > Type 'contributors()' for more information and > 'citation()' on how to cite R or R packages in publications. > > Type 'demo()' for some demos, 'help()' for on-line help, or > 'help.start()' for an HTML browser interface to help. > Type 'q()' to quit R. > >> dir.create("test") >> obscure<-"test" >> dir.create(obscure) > Warning message: > In dir.create(obscure) : 't' already exists >> sessionInfo() > R version 2.8.0 Patched (2008-10-21 r46766) > i386-pc-mingw32 > > locale: > LC_COLLATE=English_United Kingdom.1252;LC_CTYPE=English_United > Kingdom.1252;LC_MONETARY=English_United > Kingdom.1252;LC_NUMERIC=C;LC_TIME=English_United Kingdom.1252 > > attached base packages: > [1] stats graphics grDevices utils datasets methods base > > > Thanks in advance, > > Keith Ponting > Aurix Ltd, Malvern WR14 3SZ UK > > ______________________________________________ > 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. >-- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595
Apparently Analagous Threads
- xspline, graphical parameters and MAXNUMPTS
- CRAN task views work only once per session (PR#9330)
- work-around for debugger broken (by changed behaviour of get under R 2.8?) when functions have ... arguments
- Location of HTML help files
- Axis gives error message (PR#13259)