Displaying 3 results from an estimated 3 matches for "mssr".
Did you mean:
  msr
  
2003 Mar 11
0
Interrater and intrarater reliability
...rame1)
meanSquares<-summary(aovFull)[[1]][,3]
for (raterAct in 1:tt)
{
raterActCat<-raterLabels[raterAct]
aovAct<-aov(Result~Subject,data=Frame1[Frame1$Rater==raterActCat,])
meanSquares<-c(meanSquares,summary(aovAct)[[1]][2,3])
}
names(meanSquares)<-c('MSS','MSR','MSSR','MSE',paste('MSE',levels(Frame1$Rater),sep=''))
MSS<-meanSquares[1]
MSR<-meanSquares[2]
MSSR<-meanSquares[3]
MSE<-meanSquares[4]
MSEpart<-meanSquares[-(1:4)] # the same for random and fixed, see table 2 (p. 780) and 3 (p. 281)
sighat2Srandom<-(MSS-MSS...
2009 Feb 18
4
A Modest Definition List Proposal
Howdy,
I've been thinking a lot about definition list syntax, and what I did  
and didn't like about the PHP Markdown Extra syntax (which seems to be  
a de-facto standard, discount notwithstanding, yes?). What I came up  
with is a single character change to the PHP Markdown Extra syntax. I  
just published a detailed explanation of my thoughts and reasoning for  
this on [my
2009 Jun 01
1
installing sn package
...]][,3]
>  for(raterAct in 1:tt) {
>  raterActCat<-raterLabels[raterAct]
>  aovAct<-aov(Result~Subject,data=Frame1[Frame1$Rater==raterActCat,])
>  meanSquares<-c(meanSquares,summary(aovAct)[[1]][2,3])
>  }
>  names(meanSquares)<-
>  c('MSS','MSR','MSSR','MSE',paste('MSE',levels(Frame1$Rater),sep=''))
>  MSS<-meanSquares[1]
>  MSR<-meanSquares[2]
>  MSSR<-meanSquares[3]
>  MSE<-meanSquares[4]
>  # the same for random and fixed, see table 2 (p. 780) and 3 (p. 281)
>  MSEpart<-meanSquares[...