Displaying 20 results from an estimated 3000 matches similar to: "CRAN packages maintained by you"
2007 Apr 12
1
Milestone: 1000 packages on CRAN as of today(?)
Hi,
I was just looking at the "CRAN Daily Package Check Results"
[http://cran.r-project.org/src/contrib/checkSummary.html], and
realized there are 1000 packages on CRAN as of today (look at row 3 in
the table below).  Yet another quite extraordinary milestone in R
history.
Last updated on 2007-04-12 11:48:32
Results for installing and checking packages using the three current
flavors
2005 Nov 30
1
\dQuote{} in \code{} not processed
Just wondering if this is the expected behaviour.
I was wanting to produce quoted text within \code{}, without manually
entering the '"'. \dQuote{} seems advisable after reading the Writing R
Extensions manual, so I tried \code{\dQuote{mytext}} expecting it to
produce "mytext" in monospace font (with ' ' round it in the R help
files) but it appears that
2007 Nov 14
1
graphics in cocorresp package
I'm using cocorresp package with predictive co-correspondence analysis model.
i would need to visulize inside the graphic (plot function) the sample site numbers (is it possible to consider this a "label"?).
is there any function to do this?
 
thanks for your help.
 
Elisa
 
 
 
Dr. Elisa Santi
Dipartimento di Scienze Ambientali "G. Sarfatti" Unità di Ricerca Biodiversità
2011 Mar 18
4
Testing window for R 2.13.0
We are now starting testing R 2.13.0/alpba/beta/RC and testing and 
feedback would be appreciated (whereas reports on problems immediately 
after release will try our patience).
Sources are available at
http://cran.r-project.org/src/base-prerelease/
Windows binaries at
http://cran.r-project.org/bin/windows/base/rtest.html
and Mac binaries at http://r.research.att.com/, specifically
2009 Jul 28
1
Sys.setlocale
When checking an R package of mine, I get
* checking R files for syntax errors ... WARNING
Warning in Sys.setlocale("LC_CTYPE", "en_US") :
   OS reports request to set locale to "en_US" cannot be honored
'Sys.setlocale' is not used in any of my R functions. What should I do 
to fix the Warning? I have never seen this before.
My locale is "sv_SE",
2012 May 29
4
per-mailbox message limits
This is something Timo hacked up for me a few years ago and I realised 
should be on the list in case anyone else wants them.
The following patches will limit maildir folders to 4000 messages on 
Dovecot 2.0.* and 2.1.*
The Specfile patch is against the Cityfan Redhat EL5 SRPM but is likely 
to work on most build platforms
Changing the message limit requires a recompile. It's brutal and
2003 Jul 01
1
Warning message in scatter.smooth (modreg)
Dear list,
In using the scatter.smooth() function (modreg) on a small data set (100 
obs) the following error was produced:
 > scatter.smooth(Na, S)
Warning message:
k-d tree limited by memory. ncmax= 200
I haven't used scatter.smooth much but when I have, I haven't seen this 
message before.
gc() returns
 > gc()
          used (Mb) gc trigger (Mb)
Ncells 417693 11.2     667722
2005 Jun 01
0
RESOLVED: R GUI for Linux?
1) As long as the developer version of tcltk is installed, I now have no problem compiling R with tcltk support on Fedora Core 3. After extracting the gunzipped directory, I switch to the new directory and execute the following two commands:
./configure ----enable-R-shlib
make
2) After compiling JGR as specified on their web site, the JGR program is initialized with the 'run' file.
2005 Oct 10
1
Documenting newly created generic versions of non-generic base R functions
Hi,
Following the Writing R Extensions manual, I created a method for the
cor function. As cor is not a generic, I followed the advice of section
6.1 of the same manual and did the following:
cor <- function(x, ...) UseMethod("cor")
cor.default <- stats::cor
cor.symcoca <- function{ some code }
I used package.skeleton to create the basic set-up of my package,
containing the
2005 Jun 01
0
StructTS and arima and missing values
Dear List,
I am thinking about ways in which I might analyse some stratigraphic 
data. The nature of the data series I have generates a number of issues:
1) The data I have in mind come from a sediment core sequence taken from 
the bottom of a lake. The sequence is sliced into a priori defined 
slices, in this case 0.2cm per slice. in this way a sequence of 0.2cm 
slices is produced for the
2005 Nov 15
0
plots in a matrix
Hi,
consider the following example:
I have a matrix like this:
spp.mds$points
                 [,1]         [,2]
CLAP0      1.79703164 -11.66716182
CLAP30     3.87034797  -7.48168377
YBI0000   10.27538316  -3.32226184
YBI0100    0.58463806  -1.25748701
hir10000   5.82907036  -4.09695960
hir10016  -2.22113472  -4.86563557
gyn30000   5.14643671  -3.58706541
gyn30032   2.99552434  -6.21815132
...
2006 May 20
1
intervals from cut() as numerics?
Hi,
Given some example data:
dat <- seq(4, 7, by = 0.05)
x <- sample(dat, 30)
y <- sample(dat, 30)
error <- x - y
I have broken the rage of x into 10 groups and I can calculate the bias
(mean(error)) for each of these 10 groups:
groups <- cut(x, breaks = 10)
max.bias <- aggregate(error, list(group = groups), mean)
max.bias
       group          x
1    (4,4.3] -0.7750000
2 
2005 Aug 03
1
deparse(substitute(x)) and S3 methods
Dear List,
I have the following function:
coca <- function(x, ...)
  {
    if(is.null(class(x))) class(x) <- data.class(x)
    UseMethod("coca", x)
  }
and a default method
coca.default <- function(x, y, method = c("predictive", "symmetric"),
                         reg.method = c("simpls", "eigen"), weights =
NULL,
                  
2005 Aug 02
1
problem using evaluating a formula
##data
y1 <- matrix(c(3,1,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,1,1,1),
             nrow = 5, byrow = TRUE)
y2 <- matrix(c
(3,0,10,3,3,0,0,1,1,0,0,0,0,0,1,0,1,0,0,2,1,0,1,1,0,2,1,1,4,1),
             nrow = 5, byrow = TRUE)
y1 <- as.data.frame(y1)
y2 <- as.data.frame(y2)
rownames(y1) <- rownames(y2) <- paste("site", 1:5, sep = "")
colnames(y1) <-
2005 Apr 29
2
Automating plot labelling in custom function in lapply() ?
Dear List,
Consider the following example:
dat <- data.frame(var1 = rnorm(100), var2 = rnorm(100),
                   var3 = rnorm(100), var4 = rnorm(100))
oldpar <- par(mfrow = c(2,2), no.readonly = TRUE)
invisible(lapply(dat,
                  function(x) {
                    plot(density(x),
                         main = deparse(substitute(x))) }
                  )
           )
2005 Aug 01
1
Follow-Up: R on FC4
Dear List,
A few weeks ago a discussion took place regarding Fedora Core 4 and
compiling R on that platform using the new version 4 of gcc and its
gfortran compiler.
gcc was recently updated to 4.0.1 on FC4 (4.0.1-5 in Red Hat Land) so I
thought I'd give compiling R a go on my laptop which needed updating
anyway. I've had trouble using the optimisation flags I used to use
under FC3 with
2005 May 04
1
make hanging during compile of r-patched/R-devel on Fedora Core 3
Hi,
On a new Dell laptop, with a fresh FC3 installation (with latest updates 
applied) I am experiencing make hanging consistently after/during 
building grDevices. This happens when using the configure flag 
--with-lapack (I have the LAPACK rpm distributed with FC3 installed). 
The last two lines of output are:
make[5]: Leaving directory 
2006 Jun 16
1
problem with legend on other graphics devices
Hi,
I have a bit of a problem with a legend in png, eps and pdf plots
produced from a custom plotting function. I was writing a little
function to produce some stock plots for a routine analysis conducted in
our lab. I have a wrapper function figures() (see below) that produces
eps, png and pdf versions of the lab output. When I draw the plot on the
X11() device the correct amount of space is
2005 Nov 09
2
Packages that require other packages - How?
Dear list,
The help page for library/require contains the following paragraph in
the section "Packages that require other packages":
     The source code for a package that requires one or more other
     packages should have a call to 'require', preferably near the
     beginning of the source, and of course before any code that uses
     functions, classes or methods from the
2003 Feb 28
1
summary.glm() print problem(?) with cor = TRUE
Hi,
I've had a look the bug list and searched though the R documentation, email
lists etc. but didn't see anything on this:
when I do:
summary(species.glm1, correlation = TRUE)
I get a correlation matrix like this:
Correlation of Coefficients:
        ( p I(H C
pH      * 1      
I(pH^2) * B 1    
Ca        . .   1
I(Ca^2)   . .   B
attr(,"legend")
[1] 0 ` ' 0.3 `.'