-
Notifications
You must be signed in to change notification settings - Fork 1
/
ATI_SGP.R
48 lines (33 loc) · 1.02 KB
/
ATI_SGP.R
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#########################################################
###
### Calculate EOCT SGPs for ATI for 2013
###
##########################################################
### Load SGP Package
require(SGP)
### Load ATI SGP object
load("Data/ATI_Data_LONG.Rdata")
### Load EOCT configurations
source("SGP_CONFIG/2014/READING.2014.config")
source("SGP_CONFIG/2014/MATHEMATICS.2014.config")
ATI.config <- c(
READING.2014.config,
MATHEMATICS.2014.config)
####################################################################################
###
### SGP Analyses
###
####################################################################################
ATI_SGP <- abcSGP(
ATI_Data_LONG,
steps=c("prepareSGP", "analyzeSGP", "combineSGP"),
sgp.config=ATI.config,
sgp.percentiles=TRUE,
sgp.projections=FALSE,
sgp.projections.lagged=FALSE,
sgp.percentiles.baseline=FALSE,
sgp.projections.baseline= FALSE,
sgp.projections.lagged.baseline=FALSE,
simulate.sgps=FALSE)
### Save results
save(ATI_SGP, file="Data/ATI_SGP.Rdata")