Displaying 5 results from an estimated 5 matches for "ekc".
Did you mean:
ecc
2010 Oct 10
0
rearrange command in quantreg package
...ncome, 0.3) stands for, in the newdata argument of predict.
Why use a specific quantile since we estimate the response's quantile
prediction as a function of the quantile index? (If I understand correctly).
So, if I use the following code the predict command seems to work fine
dyear<-dummy(ekc$year)[,-1]
dstate<-dummy(ekc$state)[,-1]
dekc<-cbind(ekc, dyear, dstate)
z.nox<-rq(nox~dyear+dstate+pcinc+I(pcinc^2)+I(pcinc^3), tau=-1, data=dekc)
zp.nox <- predict(z.nox,newdata=list(pcinc=ekc$pcinc,
dyear=dummy(ekc$year)[,-1], dstate=dummy(ekc$state)[,-1]), type="stepfun"...
2006 Nov 06
3
Ingress qdisc bypassed on SNAT''ed traffic?
Hello,
I am using the following iptables POSTROUTING rule to NAT some RFC
1918 addresses:
iptables -t nat -A POSTROUTING -s 192.168.19.23 !
192.168.0.0/255.255.0.0 -p tcp --dport 80 -j SNAT --to-source
10.32.4.2
(I am using SNAT instead of MASQUERADE for performance reasons).
I have several addresses on the 192.168.0.0/16 subnet that I am
SNAT''ing similarly.
Problem is, ''tc
2006 Jun 07
1
Extended Attribute Support?
Hello,
Any word on when extended attribute support will be added to OCFS2?
What are the impediments to someone implementing this?
Alternatively, has anyone implemented a patch to add extended
attribute support to OCFS2?
I've been watching the open source Lustre fs development, too. I
noticed that they have added extended attribute support. However,
OCFS2 is more attractive for some
2009 Feb 16
1
incl.non.slopes=FALSE does not work at predict.lm
...d predict.lm but there is no difference.
Explicitly the code is:
fe.nox <- lm(nox~ state.1 + state.2 + state.3 + state.4 + state.5 +
state.6 + state.7 + state.8 + state.9 + time.1 + time.2 + time.3 +
time.4 + time.5 + time.6 + time.7 + pcinc + I(pcinc^2) + I(pcinc^3),
data=ekc)
p.fe.nox<-predict.lm(fe.nox, new, interval = "prediction", level=0.95,
incl.non.slopes=FALSE)
Any Help would be highly appreciated
Thanks
Dimitris
--
View this message in context: http://www.nabble.com/incl.non.slopes%3DFALSE-does-not-work-at-predict.lm-tp22046749p22046749.html...
2006 Jun 09
0
How To Build OCFS2 Into The Kernel?
Hello,
I have OCFS2 working on my cluster when I build a kernel with OCFS
compiled as a kernel module. However, mount.ocfs2 fails when I build
OCFS2 into the kernel. Here is the error message :
>>mount.ocfs2: Unable to access cluster service Cannot initialize cluster
Also, none of the OCFS2 kernel threads are running when OCFS2 is built
into the kernel (o2net, for example).
Question: How