search for: showwarnings

Displaying 20 results from an estimated 23 matches for "showwarnings".

2011 Aug 18
1
Bug: argument 'lib.loc' not passed on appropriately in 'library()'?
Dear list, I'm experimenting with setting up custom 'lib' and 'destdir' directories for my R packages. It seems to me that 'library()' does handle a custom 'lib.loc' argument the way it should for an arbitrary package but NOT for its dependencies on other packages. The latter are looked for in the default lib path (~/R/R-2.x.x/library) and NOT in the custom
2008 Sep 03
2
Problem with dir.create in windows servers
Hello. I've being having problems to create directories in a windows server environment . It seems that the recursive argument is not working properly on the intranet, as it does in a local path. For example: > dir.create("\\\\server/directory1/directory2") , this works fine, and creates the directory2, but If we want to create the directory3 and another directory called
2006 Aug 01
2
deleting a directory
Hi, all, I'm looking a utility for removing a directory from within R. Currently, I'm using: foo <- function(...) { mydir <- tempdir() dir.create(mydir, showWarnings = FALSE, recursive = TRUE) on.exit(system(sprintf("rm -rf %s", mydir))) ## do some stuff in "mydir" invisible() } However, this is assumes "rm" is available. I know of ?dir.create, but there is no opposite. And ?file.remove appears to work only on files and...
2005 Dec 15
2
Why is bubbles() creating empty png graphs?
...patch_renosterbos") tbls <- dbListTables(con) runs <- 1:5 years <- seq(98, 0, -7) progress_end <- length(tbls) * length(runs) * length(years) progress <- 0 for (year in years) { fd <- paste("/home/rkrug/Documents/R/plots/Y", year, sep="") dir.create(fd, showWarnings=FALSE, recursive = TRUE) for (run in runs) { for (tn in tbls) { fn <- paste(fd, "/", tn, "_R", run, "_Y", year, ".png", sep="") progress <- progress + 1 cat(progress, 'of', progress_end, " | ", fn, " | ") flush.cons...
2010 Jun 23
1
problem to building R (datasets)
Dear all, While I was trying to build R source, I found an error at datasets package (there was no error before that) ../../../library/datasets/R/datasets is unchanged Error in dir.create(Rdatadir, showWarnings = FALSE) : file name conversion problem Calls: <Anonymous> -> <Anonymous> -> dir.create Execution halted make[2]: *** [all] Error 1 make[1]: *** [R] Error 1 make: *** [all] Error 2 And it was caused by @$(ECHO) "tools:::data2LazyLoadDB(\"$(pkg)\", compress=3)&q...
2008 Feb 15
1
dir.create in 2.7.0dev (PR#10765)
Hi I have some problems to create severeal directories at the same time dir2 = "C:/00test000/test/test1" dir.create(dir2, showWarnings = TRUE, recursive = TRUE) It works in 2.6.2 but not in 2.7.0dev I use Windows, R 2.7.0 (2008-02-15 r44484) Best regards Dominik
2014 Sep 30
1
R's internal tar ignores files in sub-directories
E.g. I am seeing: dir <- file.path(tempdir(), "test-tar") dir.create(dir) setwd(dir) dir.create("foo", showWarnings = FALSE) file.create("foo/bar.R") tar("test.tar", files = "foo/bar.R") dir.create("untarred") untar("test.tar", exdir = "untarred") list.files("untarred", recursive = TRUE) # character(0) As far as I can see...
2008 Apr 23
1
pdf() and histogram() in function call
Here is a function I wrote. It runs no problem, but generate empty pdf files. I can't find what is the problem. create.pdf<- function(x, dir) { dir.create(dir, showWarnings = FALSE) plist<- c("a", "b" , "c", "d") for(j in plist) { filedir<- paste(dir, "/", j, ".pdf", sep="") form1<- as.formula(paste("~ ", j, " | var1", sep=" "))...
2020 Feb 26
3
unlink() on "~" removes the home directory
...that is just asking for trouble. Well, surely, _intentionally_ you would not do that. Unintentionally, you might. E.g. something like this is enough: # Create a subpath within a base directory badfun <- function(base = ".", path) { dir.create(file.path(base, path), recursive = TRUE, showWarnings = FALSE) } badfun(path = "~/foo") (If you did run this, be very careful how you remove the directory called "~"!) A real example is `R CMD build` which deletes the home directory of the current user if the root of the package contains a non-empty "~" directory. Lucki...
2010 Oct 29
4
Checking existance of a directory
Hi all, I am wondering is there any way to check whether some Directory exists or not, given the parent path of that directory? After searching for a while I found that there is a function dir.create() to create some directory. However I need to know whether such directory already exists or not, otherwise I will create that.   Thanks, [[alternative HTML version deleted]]
2011 May 19
1
r-2.13 fails make check
..., shQuote(tempdir()))) + pkgPath <- file.path(tempdir(), "Pkgs") + op <- options(warn=2) # There should be *NO* warnings here! + ## pkgB tests an empty R directory + dir.create(file.path(pkgPath, "pkgB", "R"), recursive = TRUE, + showWarnings = FALSE) + p.lis <- c("pkgA", "pkgB", "exS4noNS", "exNSS4") + for(p. in p.lis) { + cat("building package", p., "...\n") + r <- build.pkg(file.path(pkgPath, p.)) + cat("installing package", p....
2012 May 08
1
what folder to run write_PACKAGES in?
...s, rversions){ folders <- c("/bin/windows/contrib", "/bin/macosx/leopard/contrib", "/src/contrib") for(dir in folders){ dirs <- paste(local.repos, dir, "/", rversions, sep='') lapply(dirs, dir.create, recursive = TRUE, showWarnings = TRUE) } } create_repo_tree("/tools/kran", c(2.13, 2.14, 2.15)) ########################################### My CRAN mirror is in a sister folder /tools/cran and that works properly to be served at the address http://rweb.quant.ku.edu/cran. I want our local testing thing to show at...
2008 Dec 15
0
mixed csv and csv2
...# lade nötige Pakete require(ff) require(ts) require(date) require(pheno) # Lege globale Variablen an Pfad<-"I:\\Dokumente und Einstellungen\\Administrator\\Eigene Dateien\\commodity analyse\\csv-dateien\\" auslagerung<-"I:\\Auslagerung\\" dir.create(auslagerung,showWarnings=F) # Lege alle Dateienamen des Ordners "Pfad" in einen array ab dateinamen<-list.files(Pfad) #Schleife, die über alle Dateien in dateinamen geht. #Sortiert alle Leerdateien aus, also Dateien ohne sinnvollen Input for (i in 1:length(dateinamen)){ input_teil<-NA try(input_t...
2020 Mar 23
0
unlink() on "~" removes the home directory
...rouble. Well, surely, _intentionally_ you would not do that. > Unintentionally, you might. E.g. something like this is enough: > > # Create a subpath within a base directory > badfun <- function(base = ".", path) { > dir.create(file.path(base, path), recursive = TRUE, showWarnings = FALSE) > } > badfun(path = "~/foo") > > (If you did run this, be very careful how you remove the directory called "~"!) > > A real example is `R CMD build` which deletes the home directory of > the current user if the root of the package contains a non-emp...
2015 Sep 16
2
R-devel_2015-09-14 throws an error in reg-packages test
...file.copy(recursive = TRUE) > system(paste('cp -R', shQuote(pkgSrcPath), shQuote(tempdir()))) > pkgPath <- file.path(tempdir(), "Pkgs") > ## pkgB tests an empty R directory > dir.create(file.path(pkgPath, "pkgB", "R"), recursive = TRUE, + showWarnings = FALSE) > p.lis <- if("Matrix" %in% row.names(installed.packages(.Library))) + c("pkgA", "pkgB", "exNSS4") else "exNSS4" > for(p. in p.lis) { + cat("building package", p., "...\n") + r <- build.pkg(f...
2008 May 14
0
Parallel computing with rgenoud and snow: external file I/O possible?
...a working # directory for each host to hold the temporary input and output files for the runs on that host. result.files <- paste(sep="", node, ".out") for(i in 1:length(result.files)) { file.create(result.files[i]) # result file for runs on node[i] dir.create(node[i], showWarnings=F) # working directory for model runs on node[i] } # Run genoud system.time( optim.results <- genoud(fn=drive.calib, nvars=1, max=TRUE, boundary.enforcement=1, pop.size=20, max.generations=6, wait.generations=2, default.domains=1, cluster=...
2012 Oct 13
0
installation of R (2.14.1 and 2.15.1) fails due to [reg-packages.Rout] Error
...hQuote(tempdir()))) + pkgPath <- file.path(tempdir(), "Pkgs") + # op <- options(warn = 2) # There should be *NO* warnings here! + ## pkgB tests an empty R directory + dir.create(file.path(pkgPath, "pkgB", "R"), recursive = TRUE, + showWarnings = FALSE) + p.lis <- c("pkgA", "pkgB", "exNSS4") + for(p. in p.lis) { + cat("building package", p., "...\n") + r <- build.pkg(file.path(pkgPath, p.)) + cat("installing package", p., "using file&quo...
2011 May 24
2
plotting single variables common to multiple data frames
Hello all, I have files (see attached) which are created daily. I want to load about a weeks worth of them (7 daily files) and plot a weeks worth of one variable together. So one variable name is delta_D_H. I would like to plot this variable from all 7 days on one plot. I'm having trouble figure out how to do this. I've loaded them all up using this time=Sys.time() t1<-
2013 Oct 19
3
Suggestions for an "official" place to store permissions/options for a package?
R-developers: Duncan Murdoch suggested I move a post I started on r-help over here, since it is more at the developer level. Here is my question/challenge -- to my knowledge, there is not currently an official way to store a *package*'s options to a standardized location on a user's computer. Given that OS-level programs have standard preference locations, I was hoping to first assess:
2020 Feb 14
3
R-3.6.2 make check fails
...s(pkgPath)) { + message("No valid 'pkgPath' (from 'pkgSrcPath') - exit this test") + if(!interactive()) q("no") + } > > ## pkgB tests an empty R directory > dir.create(file.path(pkgPath, "pkgB", "R"), recursive = TRUE, + showWarnings = FALSE) > p.lis <- c(if("Matrix" %in% row.names(installed.packages(.Library))) + c("pkgA", "pkgB", "pkgC"), + "exNSS4", "exSexpr") > InstOpts <- list("exSexpr" = "--html") > pkg...