search for: g28

Displaying 7 results from an estimated 7 matches for "g28".

Did you mean: 28
2009 Mar 26
1
Extreme AIC in glm(), perfect separation, svm() tuning
...onverge. in this case, using brglm() does help! It stabilize the AIC, and the classification power is better. Code and output: (need to install package: brglm) matrix <- read.table("http://ihome.ust.hk/~haitian/sample.txt") names(matrix)<- c("g0","g761","g2809","g3106","g4373","g4583") fo <- as.formula(g0 ~ g761 * g2809 * g3106 * g4373 * g4583) library(MASS) library(brglm) lr <- brglm(formula= fo, family=binomial(link=logit), data=matrix) summary(lr) Coefficients: Estimate Std. Er...
2005 Jul 22
2
[LLVMdev] Need help on SPEC 95 "standard" commandlines
...UT_FILENAME = null.out RUN_OPTIONS = 40 19 else STDIN_FILENAME = 2stone9.in STDOUT_FILENAME = 2stone9.out RUN_OPTIONS = 50 9 endif include ../../Makefile.spec95 Makefile (END) which suggests the compiling command: gcc -DSPEC_CPU95 -O2 -o spec_go g2.c g22.c g23.c g25.c g26.c g27a.c g27b.c g28.c g29.c g2eye.c g2jlib2.c g2jos.c g2list.c g2reas.c g2s2.c g2s3.c g2shp.c and the running commandline: ./spec_go 50 9 2stone9.in < are these correct ? > This must be a shrinked problem size, since 2stone9.in is in the training set, not the ref set. < There are two input files in ref su...
2006 Feb 24
3
Sorting alphanumerically
I'm trying to sort a DATAFRAME by a column "ID" that contains alphanumeric data. Specifically,"ID" contains integers all preceeded by the character "g" as in: g1, g6, g3, g19, g100, g2, g39 I am using the following code: DATAFRAME=DATAFRAME[order(DATAFRAME1$ID),] and was hoping it would sort the dataframe by ID in the following manner g1, g2, g3, g6, g19,
2010 Jul 15
1
Error using the mi package
...d9d* d9e* d10a* d10b* d10c* d10d* d10e* d10f* d11* d13* d14* e1* e2* e3* e5* e6* f2* f3a* f3b* f3c* f3d* f3e* f4* f6* f7* f8* f9* f12* f14* f15* f16* f20* f21* f22* f23* f25* g2* g3* g6* g8* g9* g12* g13* g15* g17* g18* g22* g25* g26* g27* g28* g31* g34* g43* g55* g58* g59* g60* g61* g63* g65* g68a* g68b* g69* g70* g71* g91* g92* g93* g94* g95* Error in AveVar[s, i, ] <- c(avevar.mean, avevar.sd) : number of items to replace is not a multiple of replacement length And here is what traceback() gives: > tra...
2005 Jul 22
0
[LLVMdev] Need help on SPEC 95 "standard" commandlines
On Thu, 21 Jul 2005, Long Fei wrote: > which suggests the compiling command: > gcc -DSPEC_CPU95 -O2 -o spec_go g2.c g22.c g23.c g25.c g26.c g27a.c g27b.c > g28.c g29.c g2eye.c g2jlib2.c g2jos.c g2list.c g2reas.c g2s2.c g2s3.c g2shp.c > and the running commandline: > ./spec_go 50 9 2stone9.in > < are these correct ? > I believe that we only include test/train inputs for some programs. > This must be a shrinked problem size, since 2stone...
2005 Jul 22
0
[LLVMdev] Need help on SPEC 95 "standard" commandlines
On Thu, 21 Jul 2005, Long Fei wrote: > Does anyone know the "standard" commandline to compile and run spec95 > benchmarks ? > > I found some scripts in llvm test suite (External/SPEC/CINT95), but I am not > sure if they are the *default ref* configurations. <Some of them seem to use > smaller problem sizes.> SPEC95 was retired many years ago, so few people
2005 Jul 22
2
[LLVMdev] Need help on SPEC 95 "standard" commandlines
Does anyone know the "standard" commandline to compile and run spec95 benchmarks ? I found some scripts in llvm test suite (External/SPEC/CINT95), but I am not sure if they are the *default ref* configurations. <Some of them seem to use smaller problem sizes.> SPEC95 was retired many years ago, so few people around me know how to compile and run them. I am building from