Learn R Programming

intsvy (version 2.9)

timss.log.pv: Logistic regression analysis with plausible values

Description

timss.log.pv performs logistic regression with plausible values and replicate weights.

Usage

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

Value

timss.log.pv returns a data frame with coefficients, standard errors, t-values, and odds ratios. If "by" is specified, results are reported in a list.

Arguments

pvlabel

The names of columns corresponding to the achievement plausible scores.

x

Data labels of independent variables.

cutoff

The cut-off point at which the dependent plausible values scores are dichotomised (1 is larger than the cut-off)

by

The label for the categorical grouping variable (i.e., by="IDCNTRYL") or variables (e.g., x= 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.log.pv, pirls.log.pv

Examples

Run this code
if (FALSE) {
timss.log.pv(pvlabel=paste0("BSMMAT0", 1:5), cutoff= 550, 
x=c("ITSEX", "BSBGSLM"), by="IDCNTRYL", data=timss8g)

intsvy.log.pv(pvlabel=paste0("BSMMAT0", 1:5), cutoff= 550, x="ITSEX", 
by="IDCNTRYL", data=timss8g, config=timss8_conf)
}

Run the code above in your browser using DataLab