pa {svenssonm} | R Documentation |
The percentage agreement (PA) which shows the proportion of the subjects who did not change their choices.
pa(t)
t |
The contingency table for Svensson's method, a two-dimension matrix. |
pa
gives the PA value, multiply by 100 to get a percentage number.
con_ta
for generating contingency table. sresult
for summary of
Svensson's method analysis.
x <- c (1:5,5:1)
y <- c(1:5,1,1,5,4,1)
z <- con_ta(x,y,)
pa(z)