con_ta {svenssonm} | R Documentation |
Generate Contingency table for Svensson's Method
con_ta(x, y, level = 5)
x |
a numeric vector of data values, each element range from 1 to level. |
y |
a numeric vector of data values, must have same length as x. |
level |
the dimension of the contingency table, the default is 5. |
A contingency table based on x
and y
.
sresult
for summary of Svensson's method analysis.
x <- c (1:5,5:1)
y <- c(1:5,1,1,5,4,1)
con_ta(x,y,)