Displaying 3 results from an estimated 3 matches for "susbstantial".
Did you mean:
substantial
2009 Aug 17
1
[Fwd: Re: R code to reproduce (while studying) Bates & Watts 1988]]]
....849,
k = 0.178),
corr=corAR1(.69))
I cannot understand why
anova(m2, m3)
Model df AIC BIC logLik Test L.Ratio p-value
m2 1 4 -20.09053 -12.13459 14.04526
m3 2 5 -51.08761 -41.14269 30.54380 1 vs 2 32.99708 <.0001
indicate a susbstantial improvement in the model, but the plot of
residual is quite the same (slight differences)
plot(m2, pch = 20);x11();plot(m3, pch = 20)
Any other idea ?
2007 Jun 19
2
Help in ARIMA
I am working on a data set which has the waiting times taken of jobs running
on a cluster. I need to come up with a method to use this historical data to
come up with a prediction for the future. Even probably try simulating the
full history (as in I have history of the job submission time and running
time,etc). So I can run through the actual history and at every job
submission, depending on the
2012 Oct 02
4
[LLVMdev] Handling SRet on Windows x86
Hello Aaron, Anton, LLVM-dev,
While working on http://llvm.org/PR13676#c6
I found out that whenever I compile code with class methods returning
structures it get generated incompatible with MSVC.
Looking at lib/Target/X86/X86CallingConv.td, I found out that
CC_X86_32_ThisCall maps SRet to EAX but in fact it should push
the address of the return temp on stack.
The following patch fixes the issue