Displaying 20 results from an estimated 10000 matches similar to: "R/Splus code for PRESS?"
1998 Nov 07
1
simple questions about R (fwd)
OK, I am forwarding this to the r-help. In the original message
I simply hit reply and I thought I send to ALL r-help list. (apparent not)
also I recieved another piece of mail.....about the RNG in
Splus 4.0 or later indicating it was modified and getting worse.
I only have Splus 3.4 for HP. So I cannot try it.
This makes the idea of using the
pre-generated RN on CDROM more appealing..
Mai
2003 Oct 03
2
how to get condition number from lm output
Dear r-help,
I ran
output <- lm(formu, data=mydata)
I want to look at the condition number (to see if the matrix is near singular). How?
Also, I use the function stepAIC from MASS to select models, how can I see the condition numbers in each step?
While I am at it. I find a minor bug:
R 1.7.1 on window XP, when you copy and paste by click
one button, then the input stopped, until you
2001 Nov 09
3
A chinese R-info page and a question
Dear R community,
I wrote and someone else helped me type a 5-page R-info in Chinese,
covering the most basic information on how to get and install
and start using R on Wintel PC.
This could serve those not fluent in/intimidated by
English but want to start using R.
(I met a lot of those in China)
<http://www.ms.uky.edu/~mai/ZhongWen.htm>
also a MSword version of the same (may print
2004 Sep 24
3
bug in power.t.test( ) (PR#7245)
Full_Name: Mai Zhou
Version: 1.9.1
OS: Win XP Professional
Submission from: (NULL) (12.222.227.93)
> power.t.test(n=25, delta=0.1, sig.level=1.1, strict=TRUE, type="one.sample")
One-sample t test power calculation
n = 25
delta = 0.1
sd = 1
sig.level = 1.1
power = 1.088311
alternative = two.sided
### power can never be
1999 Mar 30
2
Y2K compliance of R
Hi, I was thinking to ask the University computing Labs here
to install R and I was told they need a statement that the software (R)
is Y2K compliant. Which I cannot find in CRAN. (in addition to the
licensing info).
Is it a big issue to put such a statement in R? or this has legal implications
that R do not want as a "free" software?
If possible I would like to see the statement on
1999 Jan 28
1
bug in the ctest package: binom.test
R 0630 for windows
> library(ctest)
> binom.test(7,10,p=0.3, alternative="two.sided")
returns a p-value of =< 2.2e-016 and a warning
In Splus 3.4
> binom.test(7,10,p=0.3, alternative="two.sided")
returns a p-value of 0.0106
I think it is the
max(v[v<=(1+eps)*PVAL]) causing the problem...
max() of an empty vector.......
Mai Z
2010 Dec 27
1
Problem using pkg "survival"
Hello all.
I've been attempting to utilize the "survival" pkg (
http://cran.r-project.org/web/packages/survival/index.html), while reading
through this guide (http://www.ms.uky.edu/~mai/Rsurv.pdf). I figured working
through the guide would be the best way to go, before attempting my own
data.
I tried to utilize the Kaplain-Meier estimator as shown in the guide:
2002 May 21
1
device png() in batch mode?
Dear helper, I am using linux (redhat) R 1.5.0, in the
batch mode.
The device png() do not seem to be available.
A look at the help says png() is available if I
use --gui option.
Is there a way to get around it?
(to get png("Rplot.png") in batch mode?)
The reason I need batch mode is that I am working to get the Rcgi
to run.
Thanks,
Mai Zhou
mai at ms.uky.edu
2001 Sep 24
2
confidence interval given by prop.test()
Dear R-help,
> prop.test(9, 137, p=0.066)
> prop.test(9, 137, p=0.05)
give two different 95% confidence intervals.
I thought the confidence interval calculation
should be independent of testing calculations (and thus
the null hypothesis)?
Splus 2000 has similar problems but give slightly different
answer.
Using R1.3.0 on windows.
Mai Zhou
2002 Mar 19
3
multiroot() anyone?
Dear list, Did anybody have something like multiroot(),
similar to uniroot() only for several varibles/function?
I know the difficulty several varibles bring. But for
nice functions, it can be useful.
We are thinking of writing one....I thought to ask first.
Mai Zhou
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
1999 Mar 09
1
bug?
Windows 9*/NT version, on an NT box
R 0.63.0 Beta (Nov 13, 1998)
> library(survival4)
> test <- function(x,d) {
survfit(Surv(x,d) ~1)
}
> test( rexp(50), sample(c(0,1), size=50, replace=T) )
Error: Object "x" not found
>
Other functions like in the ctest library works out
OK, the x and d got passed to the inner function.
And here it did not got passed to
1998 Nov 09
2
no subject (file transmission)
RNG in R and Splus 3.4
Prof. Ripley asked the details of the example.
We were doing parametric bootstrap, so it is similar to simulation.
Anyway here is the details.
We start with a sample of 19 positive numbers. We know the sample
is from truncated exp(0.3)...only the truncation point, theta, is unknown.
In other words, the sample can be generated from something like
x1 <- rexp(100,
1998 Nov 09
2
no subject (file transmission)
RNG in R and Splus 3.4
Prof. Ripley asked the details of the example.
We were doing parametric bootstrap, so it is similar to simulation.
Anyway here is the details.
We start with a sample of 19 positive numbers. We know the sample
is from truncated exp(0.3)...only the truncation point, theta, is unknown.
In other words, the sample can be generated from something like
x1 <- rexp(100,
1999 Apr 28
1
R random number generator
R 0.64 on windows NT 4.0
Sometimes I got an error message by doing this
> .Random.seed <- c(1, 1:2)
> .Random.seed
[1] 1 1 2
> runif(5)
Warning: Wrong length .Random.seed; forgot initial RNGkind? set to Wichmann-Hill[1] 0.02253721 0.84832584 ........
Sometimes I do not get error message:
> .Random.seed <- c(1, 1:2)
> .Random.seed
[1] 1 1 2
> runif(1)
[1] 0.5641106
>
1999 Aug 30
1
rexp and rweibull
In splus rexp() and rweibull() are related:
> set.seed(153)
> rexp(1)
[1] 0.0493267
> set.seed(153)
> rweibull(1, shape=1)
[1] 0.0493267
(you can also try shape =2, then rweibull = sqrt(rexp) )
However, in rw0.64.1 (on Win NT) they are different
> .Random.seed <- 1:4
> rexp(1)
[1] 1.412030
> .Random.seed <- 1:4
> rweibull(1, shape=1)
[1] 2.054032
May be rweibull
2009 Mar 24
3
r online
Hi,
I'd like to execute simple commands and functions in R through a
website, is there any service like this somewhere?
I only found http://www.osvisions.com/r-online/ but it does not work
(last update 2003) and the links to releated websites only give errors
(if I calculate 7+3).
Thanks for help & hints,
Thomas
2012 Feb 09
1
passing an extra argument to an S3 generic
I'm trying to write some functions extending influence measures to
multivariate linear models and also
allow subsets of size m>=1 to be considered for deletion diagnostics.
I'd like these to work roughly parallel
to those functions for the univariate lm where only single case deletion
(m=1) diagnostics are considered.
Corresponding to stats::hatvalues.lm, the S3 method for class
2009 Nov 08
2
influence.measures(stats): hatvalues(model, ...)
Hello:
I am trying to understand the method 'hatvalues(...)', which returns something similar to the diagonals of the plain vanilla hat matrix [X(X'X)^(-1)X'], but not quite.
A Fortran programmer I am not, but tracing through the code it looks like perhaps some sort of correction based on the notion of 'leave-one-out' variance is being applied.
Whatever the
2009 Mar 05
1
hatvalues?
I am struiggling a bit with this function 'hatvalues'. I would like a little more undrestanding than taking the black-box and using the values. I looked at the Fortran source and it is quite opaque to me. So I am asking for some help in understanding the theory. First, I take the simplest case of a single variant. For this I turn o John Fox's book, "Applied Regression Analysis
2008 Oct 03
1
Bug or inaccuracy in cumsum( )
I came across this: shouldn't the last value be a more exact zero?
It did not do that with 1 - sum( rep(0.1, 10) )
> 1 - cumsum( rep(0.1, 10) )
[1] 9.000000e-01 8.000000e-01 7.000000e-01 6.000000e-01 5.000000e-01
4.000000e-01 3.000000e-01 2.000000e-01
[9] 1.000000e-01 1.110223e-16
> version
_
platform