File: MetaTable.R

package info (click to toggle)
r-cran-psychometric 2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 532 kB
  • sloc: makefile: 2
file content (27 lines) | stat: -rw-r--r-- 653 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"MetaTable" <- 
function (x)
{
 
 rb <- rbar (x)
 vr <- varr (x)
 ve <- vare (x)
 pv <- pvse (x)[1]
 lclhet <- CIrb(x,,F)[1]
 uclhet <- CIrb(x,,F)[2]
 lclhom <- CIrb(x)[1]
 uclhom <- CIrb(x)[2]
 rho <- rhoCA(x)
 vrho <- varRCA(x)
 pva <- pvaaa(x)
 clcl <- CredIntRho(x, level=.8)[[1]]
 cucl <- CredIntRho(x, level=.8)[[2]]
mat <- data.frame(rbar = rb, Variance.rbar = vr, VarianceSamplingError = ve,
	PercentDueError = pv, HET95LCL = lclhet, HET95UCL = uclhet, HOM95LCL = lclhom,
	HOM95UCL = uclhom, RHO = rho, VarianceRho = vrho, PercentDueErrorCorrect = pva,
	CredInt80LCL = clcl, CredInt80UCL = cucl)
 return(mat)
 }