Displaying 7 results from an estimated 7 matches for "selectid".
Did you mean:
selected
2003 Dec 09
2
p-value from chisq.test working strangely on 1.8.1
...or these inputs on Mac OS X 10.3.1 with R
1.8.0. I don't know if the problem is with Linux or 1.8.1.
This bug looks very similar to bug 4718, which was reported in R 1.8.0
and fixed in R 1.8.1. They may be related.
http://r-bugs.biostat.ku.dk/cgi-bin/R/Analyses-fixed?id=4718;
user=guest;selectid=4718
Jeff
2004 Dec 28
1
--max-mem-size (PR#3562)
Hi Paul:
I am from Brazil and was looking for help to solve a memory problem using R. I found your answer to Melinda on https://stat.ethz.ch/pipermail/r-devel/2003-July/027094.html. You say there that you are not familiar with what to do when using Windows.
I'm using Windows and would like to know if Melinda found a way to solve her problem. Can you give me her e-mail address??
Thanks...
2008 May 09
0
Incorrect fix for PR#9316: Cook's Distance & plot.lm
Bug PR#9316 noted an inconsistency between the Cook's distance contours
on plot.lm(x, which = 5) and the values given by cooks.distance(x) -- as
shown in plot.lm(x, which = 4) -- for glms:
http://bugs.r-project.org/cgi-bin/R/Analyses-fixed?id=9316;user=guest;selectid=9316
The suggested fix was to modify the contour levels by a dispersion
factor, implemented as follows:
dispersion <- if (isGlm)
summary(x)$dispersion
else 1
cl.h <- sqrt(crit * p * (1 - hh)/hh * dispersion) [1]
where crit is the value of Cook's distance along the contour, p is...
2009 Mar 05
0
calling Rf_initEmbeddedR twice gives an error
...for R_isMethodsDispatchOn
Error in gzfile(file) : invalid 'encoding' argument
Fatal error: unable to restore saved data in .RData
I've recognized that there were others with that problem - which is
marked user error here
http://bugs.r-project.org/cgi-bin/R/trashcan?id=12644;user=guest;selectid=12644
Unfortunately it is nowhere stated what one should have called... Any
of
R_dot_Last();
R_RunExitFinalizers();
R_gc();
does not help either...
However I can trigger the problem on the R cmdline when I do:
.Call("R_isMethodsDispatchOn", 1,2, PACKAGE = "base"...
2005 Sep 29
1
samba (3.0.20) doesn't use TLS for LDAP referrals
Hello,
Now I'm trying to move the LDAP backend from the master OpenLDAP
server to a slave one. The ACL rules for all directories requires
a "ssf = 112" (Security Strength Factor) just to be sure that all
connections are properly encrypted. Also the slave directory has a
referral directive pointing the master directory.
Samba works perfectly with the slave directory except when
2003 Nov 07
2
Bug in cor.test - Spearman
Greetings.
There seems to be a problem with the P-value computation in the
cor.test with method="spearman". In R1.8.0 (MS Windows) I
seem to be getting intermittently nonsense P-values, but the rho's
are OK. I can get this reproducibly with the toy example attached
where the first use is OK and subsequent calls with the same data
give nonsense. (I have also seen the problem
2002 Mar 20
3
[PATCH] rsync kills all user processes on fork failure
I filed this as bug 4150 http://rsync.samba.org/cgi-bin/rsync/
We had a few hundred hung processes and reached the limit for "max user
processes" (see the ulimit command). rsync did not handle this very
well. It passed -1 as a PID to kill(). When kill() gets -1, it kills all
of the processes owned by that user, or if run by root, all processes.
I attached a one line fix. Let me