Skip to content
Prev 78158 / 398502 Next

Searching for specific functions

1) I am not sure why you want the biased version but here are two ways
to do this. Also if you have large enough sample size, it would not
matter much.

	my.var1 <- function(x) mean( (x - mean(x))^2 )
	my.var2 <- function(x) mean( x^2 - mean(x)^2 )

2) Look at quantiles function. Your equation might correspond to one of
the types given there.

Regards, Adai
On Fri, 2005-09-30 at 10:46 +0200, Fabrizio Ferri Benedetti wrote: