R/inv.normal.R

inv.normal <-
function(i, zstat)
{
	comb = rep(0,length(zstat[[i[1]]]))
	for (k in 1:length(zstat[[i[1]]])){
		for (m in i)
			comb[k]=comb[k]+zstat[[m]][k]
		comb[k]=comb[k]/sqrt(length(i))
	}
	return(comb)
}

Try the survJamda package in your browser

Any scripts or data that you put into this service are public.

survJamda documentation built on May 1, 2019, 8:50 p.m.