intsvy.per.pv: Calculates percentiles

Description Usage Arguments Value See Also Examples

View source: R/intsvy.per.pv.R

Description

Calculates percentiles for plausible values

Usage

1
2
  intsvy.per.pv(pvlabel, by, per, data, export=FALSE, name= "output", 
  folder=getwd(), config)

Arguments

pvlabel

The label corresponding to the achievement variable, for example, "BSMMAT", for overall mathematics performance.

per

User-defined percentiles (e.g., per = c(5, 10, 25, 75, 90, 95)).

by

The label of the categorical grouping variable (e.g., by="IDCNTRYL") or variables (e.g., by=c("IDCNTRYL", "ITSEX")).

data

An R object, normally a data frame, containing the data from intsvy studies.

export

A logical value. If TRUE, the output is exported to a file in comma-separated value format (.csv) that can be opened from LibreOffice or Excel.

name

The name of the exported file.

folder

The folder where the exported file is located.

config

Object with configuration of a given study. Should contain the slot 'prefixes' with prefixes of filenames with the student, home, school, and teacher data.

Value

intsvy.per.pv returns a data frame with percentiles and associated standard errors. Default weights (e.g. "TOTWGT" in TIMSS) and percentiles are specified in the config parameter.

See Also

pisa.per.pv, pirls.per.pv, timss.per.pv

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
  ## Not run: 
    timss.per.pv(pvlabel="BSMMAT", per = c(5, 10, 25, 50, 75, 90, 95), by="IDCNTRYL", data=timss8)
    intsvy.per.pv(pvlabel="BSMMAT",  by="IDCNTRYL", data=timss8, config=timss8_conf)
    
    pirls.per.pv(pvlabel="ASRREA", by="IDCNTRYL", data=pirls)
    intsvy.per.pv(pvlabel="ASRREA", per = c(5, 10, 25, 50, 75, 90, 95), by="IDCNTRYL", data=pirls, 
    config=pirls_conf)
    
    pisa.per.pv(pvlabel="MATH", per=c(10, 25, 75, 90), by="CNT", data=student2012)
    intsvy.per.pv(pvlabel="MATH", by="CNT", data=student2012, config=pisa_conf)
  
## End(Not run)

dickli/intsvy2 documentation built on Sept. 8, 2020, 12:05 a.m.