Learn R Programming

intsvy (version 2.9)

timss.per.pv: TIMSS percentiles

Description

Calculates percentiles for plausible values

Usage

timss.per.pv(pvlabel, by, per, data, export=FALSE, name= "output", 
  folder=getwd())

Value

timss.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.

Arguments

pvlabel

The names of columns corresponding to the achievement plausible scores.

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 TIMSS.

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.

See Also

pisa.per.pv, pirls.per.pv

Examples

Run this code
  if (FALSE) {
timss.per.pv(pvlabel=paste0("BSMMAT0", 1:5), 
per = c(5, 10, 25, 50, 75, 90, 95), by="IDCNTRYL", data=timssg8)
  }

Run the code above in your browser using DataLab