Displaying 3 results from an estimated 3 matches for "rnor".
Did you mean:
  nor
  
2005 Nov 09
1
Problems with Shapiro Wilk's test of normality.
...t$statistic
+     W <- "W"
+   }
+
+
+
+   shap <- shapiro.p.value(x)
+   stars <- ''
+   premark <- ''
+   postmark <- ''
+   if(length(x) < 10){
+       premark <- '\\textit{'
+       postmark <- '}'
+   }
+
+   #skapa stj??rnor
+   if(! is.na(shap)){
+     if( shap <= 0.001 ){
+       stars <- '***'
+     }else{
+       if( shap <= 0.01 ){
+         stars <- '**'
+       }else{
+         if( shap <= 0.05 ){
+           stars <- '*'
+         }
+
+       }
+
+     }
+
+     outstr...
2001 Jul 17
0
bug in the interface of ESS, R for linux, S+6 for linux (PR#1028)
...x, pos = -1, envir = pos.to.env(pos), mode = "any", 
    inherits = TRUE) 
Andy Liaw <andy_liaw@merck.com> reports
> Actually, I just tried it in R on our Linux box and also had the similar
> problem, namely the completion wasn't able to complete "plo" or "rnor".  The
> info is:
> 
> 	   _                
> platform i686-pc-linux-gnu
> arch     i686             
> os       linux-gnu        
> system   i686, linux-gnu  
> status                    
> major    1                
> minor    3.0              
> year     20...
2010 May 05
0
R-help Digest, Vol 87, Issue 5
...;r-help at stat.math.ethz.ch>
Subject: Re: [R] How to replace all <NA> values in a data.frame with
	another ( not 0) value
Message-ID: <4BE01F03.8040204 at ouce.ox.ac.uk>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Hi Nevil,
You can try a method like this
x <- c(rnorm(5),rep(NA,3),rnorm(5)) # sample data
dat <- data.frame(x,x)                       # make sample dataframe
dat2 <- as.matrix(dat)                     # conver to matrix
y <- which(is.na(dat)==TRUE)         # get index of NA values
dat2[y] <- "000/000"                         #...