I seem to have solved this on my own: t.score.table <- data.frame(T=10:90,F=pnorm(10:90,mean=50.5,sd=10)) t.score <- function(x) { p <- ecdf(x) t <- cut(p(x),breaks=c(t.score.table$F,Inf),labels=t.score.table$T) t <- as.numeric(levels(t))[as.integer(t)] return(t) }
/S 2008/12/18 Stefan Björk <stefan.bj...@gmail.com>: > I'm looking for a function or algorithm for calculating McCall's area > transformed T-scores, but have not find any. An algorithm is described > on http://www.visualstatistics.net/Visual Statistics > Multimedia/normalization.htm, but this seem to be an overly > complicated procedure for implementing in R. > > /S > ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.