search for: brr

Displaying 14 results from an estimated 14 matches for "brr".

Did you mean: bar
2004 Apr 19
1
specifying as.svrepdesign with odd number PSUs
Is there a way to create a BRR svrepdesign from a survey design when the number of PSUs is odd in one or more stratum? Creating a JKn svrepdesign with that condition works okay, but when I tried to create a svrepdesign with type="BRR" I get an error and this message: "Can't split with odd numbers of PS...
2017 Jul 05
2
Svyglm Error
...ain 4 elements The following is a minimal reproducible example: library(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,"P...
2009 Oct 23
2
Memory Problems with CSV and Survey Objects
...et to 2047M. Here are the commands: > library(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 c...
2017 Jul 05
0
Svyglm Error
...al reproducible example: > library(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 , F...
2012 Jan 19
8
sumarizar
*Hola!!! resulta que tengo unos datos de divisas ordenados por fechas (días) los que he convertido a formato tipo YYYY-MM-DD donde DD siempre es 01:* * * * EUR.resto$date<-as.Date(EUR.resto$date) EUR.resto$mo <- substr(EUR.resto$date,6,7) EUR.resto$yr <- substr(EUR.resto$date, 1,4)
2004 Apr 12
2
Complex sample variances
Hello, Is there a way to get complex sample variances in the survey package on summary statistics other than means? If not, can they be added to a future version? It would be be great to have them on totals, quantiles, ratios, and tables (eg row percent, columns percent, etc). Thanks. Fred --------------------------------- [[alternative HTML version deleted]]
2012 Dec 06
0
[LLVMdev] Register classes, reg unit weights calculation in tablegen
...const std::string &): Assertion `RU.Weight < 256 && "RegUnit too heavy"' failed. The reason for this is that I have constructed pred-operands to be of the register class type FlagRegs, which holds a big union of classes, so that I can generate code like Cmp %1:RC1, 0 Brr #bb, if EQ:%1 Cmp %2:RC2, 0 Brr #bb, if EQ:%2 , where RC1 and RC2 (and others as well not shown here) both share common sub-registers, but are of different widths. This construct makes it easy to predicate instructions, no matter what register is used and of which width, and so on. (The arc...
2012 Dec 11
0
[LLVMdev] FW: Register classes, reg unit weights calculation in tablegen
...const std::string &): Assertion `RU.Weight < 256 && "RegUnit too heavy"' failed. The reason for this is that I have constructed pred-operands to be of the register class type FlagRegs, which holds a big union of classes, so that I can generate code like Cmp %1:RC1, 0 Brr #bb, if EQ:%1 Cmp %2:RC2, 0 Brr #bb, if EQ:%2 , where RC1 and RC2 (and others as well not shown here) both share common sub-registers, but are of different widths. This construct makes it easy to predicate instructions, no matter what register is used and of which width, and so on. (The arc...
2010 Nov 15
1
Best practice for encoding short sound effects
...them, and encoded that with OggDropXPd, the result was 83 KiB for a total of roughly 11 seconds of audio. So Vorbis might not be the best choice for short sounds like these. Would CELT be any better? I see that it has "low delay"; Or should I just use, say, a 4-bit ADPCM codec like IMA, BRR, or VAG? Or is concatenation in this manner the best practice? -- Damian Yerrick
2009 May 08
2
Probit cluster-robust standard errors
If I wanted to fit a logit model and account for clustering of observations, I would do something like: library(Design) f <- lrm(Y1 ~ X1 + X2, x=TRUE, y=TRUE, data=d) g <- robcov(f, d$st.year) What would I do if I wanted to do the same thing with a probit model? ?robcov says the input model must come from the Design package, but the Design package appears not to do probit? Thanks very
2003 Jul 28
0
survey package
Version 1.9 of the survey package, now percolating through CRAN, adds a beta implementation of replication weights. These can either be created from a survey design (using BRR, JK1, or JKn schemes) or provided by the user. These have been tested on only a few examples so far: there seem to be relatively few published datasets with suitable analyses. As with earlier versions of the package, I particularly welcome feedback on the user interface from practising survey sta...
2003 Jul 28
0
survey package
Version 1.9 of the survey package, now percolating through CRAN, adds a beta implementation of replication weights. These can either be created from a survey design (using BRR, JK1, or JKn schemes) or provided by the user. These have been tested on only a few examples so far: there seem to be relatively few published datasets with suitable analyses. As with earlier versions of the package, I particularly welcome feedback on the user interface from practising survey sta...
2007 Aug 02
3
how to export and import VMware servers
I recently build a CentOS-based VMware server (the free ver) and now need to move all of the virtual machines off my old Windows-based VMware server (also the free ver) to this next CentOS-based one. I have successfully FTP'd all of the files to the new CentOS box and have even opened the server in the console Window, but cannot "start" it. I start the machine (like I always do),
2007 Oct 08
16
Fileserver performance tests
Hi all, i want to replace a bunch of Apple Xserves with Xraids and HFS+ (brr) by Sun x4200 with SAS-Jbods and ZFS. The application will be the Helios UB+ fileserver suite. I installed the latest Solaris 10 on a x4200 with 8gig of ram and two Sun SAS controllers, attached two sas-jbods with 8 SATA-HDDs each und created a zfs pool as a raid 10 by doing something like the foll...