Displaying 12 results from an estimated 12 matches for "rcdd".
Did you mean:
rcd
2011 Jan 04
0
R CMD check bug or misfeature
This is a bug/misfeature report for R CMD check. The function
tools:::.check_packages_used_in_tests
Gives an apparently unintended error when checking the tests in the
contributed package rcdd_1.1-3.tar.gz as found on CRAN.
See the script below for details.
The actual error reported is totally mysterious.
* checking for unstated dependencies in tests ... NOTE
Error in as.character(function (description = "", open = "", blocking = TRUE, :
cannot coerce type '...
2015 Dec 16
2
Mystifying SEGFAULT on 3.2.3 but not 3.2.2
...lopers,
(Apologies about previous incomplete e-mail, I fat-fingered a keyboard
shortcut)??
I recently upgraded to 3.2.3 and am getting mystifying errors with my
in-development code (available at
https://github.com/gertvv/gemtc/tree/feature/regression). Every few hundred
LPs that I solve using the rcdd package will result in a SEGFAULT in the
garbage collector (address 0x10, cause 'memory not mapped') or an error
about a list not existing. Downgrading to 3.2.2 works, but *only* after
completely removing my local R packages and re-installing them. A
subsequent upgrade to 3.2.3 will again b...
2015 Dec 16
0
Mystifying SEGFAULT on 3.2.3 but not 3.2.2
Gert,
On 16 December 2015 at 12:06, Gert van Valkenhoef wrote:
| I recently upgraded to 3.2.3 and am getting mystifying errors with my
| in-development code (available at
| https://github.com/gertvv/gemtc/tree/feature/regression). Every few hundred
| LPs that I solve using the rcdd package will result in a SEGFAULT in the
| garbage collector (address 0x10, cause 'memory not mapped') or an error
| about a list not existing. Downgrading to 3.2.2 works, but *only* after
| completely removing my local R packages and re-installing them. A
I wish I could tell you something...
2009 Jun 19
3
Floating point precision / guard digits? (PR#13771)
Full_Name: D Kreil
Version: 2.8.1 and 2.9.0
OS: Debian Linux
Submission from: (NULL) (141.244.140.179)
Group: Accuracy
I understand that most floating point numbers are approximated due to their
binary storage. On the other hand, I thought that modern math CPUs used guard
digits to protect against trivial underflows. Not true?
# integers, no problem
> 1+1+1==3
[1] TRUE
# binary floating
2009 Jun 19
3
Floating point precision / guard digits? (PR#13771)
Full_Name: D Kreil
Version: 2.8.1 and 2.9.0
OS: Debian Linux
Submission from: (NULL) (141.244.140.179)
Group: Accuracy
I understand that most floating point numbers are approximated due to their
binary storage. On the other hand, I thought that modern math CPUs used guard
digits to protect against trivial underflows. Not true?
# integers, no problem
> 1+1+1==3
[1] TRUE
# binary floating
2005 Sep 01
1
controlling where *.Rout gets printed. Possible?
...ant them.
options(repos = "http://lib.stat.cmu.edu/R/CRAN/")
update.packages(ask=F)
theNew <- new.packages()
failPackages <-
c("BRugs","GDD","gtkDevice","gap","gnomeGUI","mimR","ncdf","pathmix","rcdd","rgdal","rpvm",
"Rmpi","RQuantLib","RMySQL",
"RNetCDF","RODBC","ROracle","RScaLAPACK","rsprng","RWinEdt","taskPR")
shouldFail <- theNew %in% failPackages
install.packa...
2009 Jan 17
2
Concave Hull
Dear Friends,
Here is an algorithm for finding concave hulls: http://get.dsi.uminho.pt/local/
Has anyone implemented such an algorithm in R?
RSiteSearch('concave hull') didn't reveal one (I think).
_____________________________
Professor Michael Kubovy
University of Virginia
Department of Psychology
Postal Address:
P.O.Box 400400, Charlottesville, VA 22904-4400
Express Parcels
2008 Apr 04
4
Arbitrary Precision Numbers
Hi
(If you're wondering, this is a Project Euler question :))
If I wanted to calculate the sum of the digits in the decimal representation
of 2^1000, what would be a good way to go about that? I've tried the
following methods:
# Calculate the sum of digits in the decimal representation of 2^n
# Only works for smaller values of n
bsum <- function(n) {
s <- 0
e <-
2006 Apr 05
2
Problems in package management after Linux system upgrade
...use they don't build on my system as of July, 2005, or
are obviously not needed
failPackages1 <-
c("BRugs","tclkt2","cyclones","rpvm","ncdf","gtkDevice","gap","gnomeGUI","mimR","pathmix","rcdd","rgdal","rpvm","Rmpi","RQuantLib","RMySQL",
"RNetCDF","RODBC","ROracle","rsprng","RWinEdt","taskPR")
#rejected because I subjectively think we don't need them
failPackages2 <-...
2008 May 28
2
Linear Programming.
An embedded and charset-unspecified text was scrubbed...
Name: n?o dispon?vel
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080528/96325940/attachment.pl>
2008 Sep 29
0
new TR about when MLE exist in GLM and what to do if not
...n the MLE exists in a GLM (or for that matter in any exponential family,
such as aster models -- contributed package aster) and what to do when it
does not.
This suggests many changes to glm, glm.fit, predict.glm, and anova.glm.
Before any such changes could be implemented, the contributed package
rcdd would need to be made recommended, which in turn would require that
it be made available on Macintosh (the problem is getting the GNU bignum
package GMP to compile with gcc, shouldn't be hard, but apparently is on
Macs, but Jan de Leeuw has done it, so it's not impossible).
The tech report...
2009 Jan 06
4
Apparant bug in binomial model in GLM (PR#13434)
Full_Name: S?ren Faurby
Version: 2.4.1 and 2.7.2
OS:
Submission from: (NULL) (192.38.46.92)
There appear to be a bug in the estimation of significance in the binomial model
in GLM. This bug apparently appears when the correlation between two variables
is to strong.
Such as this dummy example
c(0,0,0,0,0,1,1,1,1,1)->a
a->b
m1<-glm(a~b, binomial)
summary(m1)
It is sufficient that all