search for: nbrodt

Displaying 6 results from an estimated 6 matches for "nbrodt".

Did you mean: brott
2010 Feb 26
2
Error on Windows build: "unable to re-encode"
Dear developers, while our package TripleR (hosted on R-Forge) builds well on Mac and Linux, the Windows build shows following error (http://r-forge.r-project.org/R/?group_id=418&log=build_win32&pkg=TripleR&flavor=patched): Fri Feb 26 00:53:38 2010: Building binary for package TripleR (SVN revision NA) using R version 2.10.1 Patched (2010-02-24 r51172) ... * installing to library
2013 Mar 14
2
Snippets from other packages/ License
Hello, I want to use a function from another package (which is GPL>=3), about 20 lines of code, in my own package. I somewhat hesitate to depend on the entire package just for this single function, but of course I want to credit the original authors. What would be the best way to do that? Where should I put that credit? Or should I proceed completely different? Best, Felix
2008 Jun 17
1
Reading csv-data from variables
Dear Listmembers, I'm looking for a convenient way to read csv-data which are stored in variables of data frames. I'm working with nested csv-data: one of the columns of the first table stores a long string containing a second csv-coded table. My problem is to parse that second-order csv-table. As the read.csv command requires a link to a file, I couldn't get it to read the
2010 Jul 14
1
Precompiled vignette on CRAN
Hello, my package passes R CMD check without any warnings on my local machine (Mac OS), as well as on Uwe Ligges' Winbuilder. On RForge, however, we sometimes run into problems building the Sweave vignettes. Now here's my question: is it necessary for a CRAN submission that the Sweave vignettes can be compiled on CRAN, or is it possible to provide the (locally compiled) pdf vignette to
2012 Nov 22
1
[lattice] Increase distance between tick labels and ticks in wireframe plot ("pad")
Hello, I try to increase the distance between tick labels and ticks in a lattice wireframe plot. Here's a minimal example: ## Minimal example x <- y <- z <- c(1,2,3) df <- data.frame(x, y, z) wireframe(z ~ x*y, df, scales = list(arrows = FALSE, col = "black", font = 1, tck=0.6)) I tried the axis.components option
2013 Apr 18
1
Suppress specific warnings
Hello, is there a convenient way to suppress only *specific* warnings? (I know about ?suppressWarnings) I depend on another package, from which I want to suppress only some warnings, but not others. Felix