search for: fexp

Displaying 9 results from an estimated 9 matches for "fexp".

Did you mean: exp
2010 Sep 28
3
calcular la variancia de gini por bootstrap
...cion q definia en el ejmeplo tenia 2 parametros d y w, este es el ejemplo del manual modificado para mi base: ratio <- function(d, w) sum(d$EDAD * w)/sum(d$UNO * w) Como ves tiene 2 parametros: d y w, entonces le puse eso mismo a mi funcion grini: grini<-function(d,w){gini(d$MT_YOP_NEW, w=d$FEXP)}, donde el w q esta adentro no es el w del parametro de la funcion sino el el parametro peso de la funcion gini. Me hizo el bootstrap pero me da siempre la misma estimacion para todas las replicaciones de las muestras, por lo cual la variancia del estimador por bootstrap da 0. Entonces me di cue...
2010 Sep 29
0
Resumen de R-help-es, Vol 19, Envío 28
...nal de cada parametro en la definicion de la funcion "grini" q habia creado, cosa q deduje de mirar la funcion q le habia robado al ejemplo del manual de boot ratio <- function(d, w) sum(d$EDAD * w)/sum(d$UNO * w) En tonces mi funcion paso de ser: function(d,w){gini(d$MT_YOP_NEW, w=d$FEXP) a ser: grini<-function(d,w){gini(d$MT_YOP_NEW**w*, w=d$FEXP**w*)} Como les decia este cambio hizo q el programa ande, (deje de darme variancia cero) pero no se cual es su significado. Ahora el tema es q los resultados son algo distintos del gini original, pero bueno sobre eso seguire mirando....
2011 Sep 22
2
comparing mixed binomial model against the same model without random effect
Hi everybody, If I am correct, you can compare a model with random effect with the same model without the random effect by using the nlme function, like this: no.random.model <- gls(Richness ~ NAP * fExp, method = "REML", data = RIKZ) random.model <- lme(Richness ~NAP * fExp, data = RIKZ, random = ~1 | fBeach, method = "REML") anova(no.random.model,random.model) But, nlme is valid only for the gaussian family, isn't it? In my case I have a mixed m...
2010 Apr 02
2
panel data
Hello, I have an unbalanced panel data set that looks like: ID,YEAR,HEIGHT Tom,2007,65 Tom,2008,66 Mary,2007,45 Mary,2008,50 Harry,2007,62 Harry,2008,62 James,2007,68 Jack,2007,70 Jordan,2008,72 That is, James, Jack, and Jordan are missing a YEAR. Is there any command that will "fill in" the missing YEAR such that the end result will be balanced and look like: ID,YEAR,HEIGHT
2009 May 20
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
...SD::UINT_TO_FP: + case ISD::FP_TO_SINT: + case ISD::FP_TO_UINT: + case ISD::FNEG: + case ISD::FABS: + case ISD::FSQRT: + case ISD::FSIN: + case ISD::FCOS: + case ISD::FPOWI: + case ISD::FPOW: + case ISD::FLOG: + case ISD::FLOG2: + case ISD::FLOG10: + case ISD::FEXP: + case ISD::FEXP2: + case ISD::FCEIL: + case ISD::FTRUNC: + case ISD::FRINT: + case ISD::FNEARBYINT: + case ISD::FFLOOR: + switch (TLI.getOperationAction(I->getOpcode(), I->getValueType(0))) { + case TargetLowering::Promote: + Result = PromoteVectorOp(SDVal...
2009 May 20
0
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
...SD::UINT_TO_FP: + case ISD::FP_TO_SINT: + case ISD::FP_TO_UINT: + case ISD::FNEG: + case ISD::FABS: + case ISD::FSQRT: + case ISD::FSIN: + case ISD::FCOS: + case ISD::FPOWI: + case ISD::FPOW: + case ISD::FLOG: + case ISD::FLOG2: + case ISD::FLOG10: + case ISD::FEXP: + case ISD::FEXP2: + case ISD::FCEIL: + case ISD::FTRUNC: + case ISD::FRINT: + case ISD::FNEARBYINT: + case ISD::FFLOOR: + switch (TLI.getOperationAction(I->getOpcode(), I->getValueType(0))) { + case TargetLowering::Promote: + Result = PromoteVectorOp(SDVal...
2009 May 21
0
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On Wed, May 20, 2009 at 4:55 PM, Dan Gohman <gohman at apple.com> wrote: > Can you explain why you chose the approach of using a new pass? > I pictured removing LegalizeDAG's type legalization code would > mostly consist of finding all the places that use TLI.getTypeAction > and just deleting code for handling its Expand and Promote. Are you > anticipating something more
2009 May 20
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On May 20, 2009, at 1:34 PM, Eli Friedman wrote: > On Wed, May 20, 2009 at 1:19 PM, Eli Friedman > <eli.friedman at gmail.com> wrote: > >> Per subject, this patch adding an additional pass to handle vector >> >> operations; the idea is that this allows removing the code from >> >> LegalizeDAG that handles illegal types, which should be a significant
2009 May 21
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
...SD::UINT_TO_FP: + case ISD::FP_TO_SINT: + case ISD::FP_TO_UINT: + case ISD::FNEG: + case ISD::FABS: + case ISD::FSQRT: + case ISD::FSIN: + case ISD::FCOS: + case ISD::FPOWI: + case ISD::FPOW: + case ISD::FLOG: + case ISD::FLOG2: + case ISD::FLOG10: + case ISD::FEXP: + case ISD::FEXP2: + case ISD::FCEIL: + case ISD::FTRUNC: + case ISD::FRINT: + case ISD::FNEARBYINT: + case ISD::FFLOOR: + switch (TLI.getOperationAction(I->getOpcode(), I->getValueType(0))) { + case TargetLowering::Promote: + Result = PromoteVectorOp(SDVal...