search for: repweights

Displaying 3 results from an estimated 3 matches for "repweights".

2017 Jul 05
2
Svyglm Error
...ary(RCurl) library(survey) data <- getURL("https://raw.githubusercontent.com/cbenjamin1821/careertech-ed/master/elsq1adj.csv") elsq1ch <- read.csv(text = data) #Specifying the svyrepdesign object which applies the BRR weights elsq1ch_brr<-svrepdesign(variables = elsq1ch[,1:16], repweights = elsq1ch[,18:217], weights = elsq1ch[,17], combined.weights = TRUE, type = "BRR") elsq1ch_brr ##Resetting baseline levels for predictors elsq1ch_brr <- update( elsq1ch_brr , F1HIMATH = relevel(F1HIMATH,"PreAlg or Less") ) elsq1ch_brr <- update( elsq1ch_brr , BYINCOME = r...
2009 Oct 23
2
Memory Problems with CSV and Survey Objects
...ibrary(survey) #this step takes more than five minutes > data08<-read.csv("data08.csv",header=TRUE,nrows=210437) > object.size(data08) #329877112 bytes #Looking at Windows Task Manager, Mem Usage for Rgui.exe is already 659,632K > brr.dsgn <-svrepdesign( data = data08 , repweights = data08[, grep( "^repwgt" , colnames( data08)) ], type = "BRR" , combined.weights = TRUE , weights = data08$mainwgt ) #Error: cannot allocate vector of size 254.5 Mb #The survey design object does not get created. #This also causes Windows Task Manager, Mem Usage to spike to...
2017 Jul 05
0
Svyglm Error
...t; data <- getURL("https://raw.githubusercontent.com/ > cbenjamin1821/careertech-ed/master/elsq1adj.csv") > elsq1ch <- read.csv(text = data) > > #Specifying the svyrepdesign object which applies the BRR weights > elsq1ch_brr<-svrepdesign(variables = elsq1ch[,1:16], repweights = > elsq1ch[,18:217], weights = elsq1ch[,17], combined.weights = TRUE, type = > "BRR") > elsq1ch_brr > > ##Resetting baseline levels for predictors > elsq1ch_brr <- update( elsq1ch_brr , F1HIMATH = relevel(F1HIMATH,"PreAlg > or Less") ) > elsq1ch_brr &...