search for: repdat

Displaying 2 results from an estimated 2 matches for "repdat".

Did you mean: repdata
2011 May 13
1
issue with odfWeave running on Windows XP; question about installing packages under Linux
...or R2.13.0), odfWeave fails with the following error: Error in parse(text = cmd) : <text>:1:36: unexpected '>' 1: GLOBAL_CONTAI<text:soft-page-break/> A poke around in the unzipped odt file reveals the culprit: \Sexpr{GLOBAL_CONTAI<text:soft-page-break/>NER$repDat$Dec[i]} which should read \Sexpr{GLOBAL_CONTAINER$repDat$Dec[i]} The page break coincides with where the table overruns from one page to the next. Now, if this was a constant error across all machines, that would be annoying, but ok. My questions are: a) Can anyone think of a sensible sugg...
2006 Jul 25
1
HELP with NLME
...a measurement error setting with some validation data (indicated by vs.flag). Any help would be greatly appreciated.I apologize for the clumsiness of the R code. Many thanks in advance. Sincerely, Loki ################################################################# SAS Code: proc nlmixed data=repdat parms b0 -3 b1 -.135 a0 3 a1 4 sigsq 0.25; if vs.flag = 1 then do; eta1 = b0 + b1*lnbldT; llbin = anybc.cens.ind*eta1 - log(1+exp(eta1)); eta2 = a0 + a1*lnndsTs; llnorm = -1/(2*sigsq)*(lnbldT - eta2)**2 - .5*log(sigsq); ll = llbin + llnorm; end; else do; eta2 = a0 + a1...