Multivariate Statistik - Abschluss Aufgabe

From StatWiki

Jump to: navigation, search

Anova für Faktoren sex und Unique national programme code, abhängige Variablen IC5a - IC5l

Diskriminanzanalyse für die erzielten Werte in den beiden Tests, wie gut kann zwischen den einzelnen Schultypen diskriminiert werden.

MAnova Unterschiede zwischen den Faktoren SEX und Schultyp in Bezug auf die Testwerte

Anova Unterschiede im Faktor Geschlecht in Bezug auf die Testwerte über die unterschiedlichen Schultypen


Mathematik-Leistung vs. Computernutzung

Präsentation ist am 27.7.2006 (max. 20min pro Gruppe)

Abgabetermin ist am 12.7.2006

Contents


# Das hier ist R-code
library(xtable)

# load data
pisa2 = read.csv(paste(rfiles,"8_PISA2.csv",sep="/"))

# fix factor
# rawLabels = attr(raw,"label.table")$PROGN
raw = read.csv(paste(rfiles,"8_PISA2.raw.csv",sep="/"))
rawLabels = read.csv(paste(rfiles,"8_PISA2.raw.label.csv",sep="/"))

# colnames(pisa2)[1] = "sex"
# colnames(pisa2)[2] = "school"

# pisa2$sex = factor(as.integer(pisa2$sex),labels=c("Female","Male"))
 
# get proper labels and cut off AUT: and the english translation
# pisa2$school = as.factor(sub("\\s*\\(.*\\)","",sub("AUT: ","",names(rawLabels)[sapply(raw$PROGN, grep, rawLabels, grep)])))

#

Error in loadNamespace(name) : there is no package called 'distrEx' Calls: sys.load.image ... tryCatch -> tryCatchList -> tryCatchOne -> Execution halted

Aufgabe 2

Anova


Die Spalten Female bist Polytechnische.Schule sind p-Werte eines Shapiro Wilk Testest auf Normalverteilung. Einzig PV1READ macht Probleme.

Box Plot

 
 pdf(rpdf)
 par(mar=c(3,5,4,2)+0.1)
 boxplot(PV1MATH~sex,data=pisa2,horizontal=T,las=1,main="PV1MATH")

#

> sys.load.image("/var/www/localhost/htdocs/StatWiki/Rfiles/true", TRUE) Error in loadNamespace(name) : there is no package called 'distrEx' Calls: sys.load.image ... tryCatch -> tryCatchList -> tryCatchOne -> Execution halted

 
 pdf(rpdf) 
 par(mar=c(3,12,4,2)+0.1)
 boxplot(PV1MATH2~school,data=pisa2,horizontal=T,las=1,main="PV1MATH2")

#

> sys.load.image("/var/www/localhost/htdocs/StatWiki/Rfiles/true", TRUE) Error in loadNamespace(name) : there is no package called 'distrEx' Calls: sys.load.image ... tryCatch -> tryCatchList -> tryCatchOne -> Execution halted

 
 pdf(rpdf) 
 par(mar=c(3,14,4,2)+0.1)
 boxplot(PV1MATH2~sex+school,data=pisa2,horizontal=T,las=1,main="PV1MATH2") 

#

> sys.load.image("/var/www/localhost/htdocs/StatWiki/Rfiles/true", TRUE) Error in loadNamespace(name) : there is no package called 'distrEx' Calls: sys.load.image ... tryCatch -> tryCatchList -> tryCatchOne -> Execution halted

Pairwise T-Test


Error in loadNamespace(name) : there is no package called 'distrEx'
Calls: sys.load.image ... tryCatch -> tryCatchList -> tryCatchOne -> 
Execution halted
Personal tools