Displaying 10 results from an estimated 10 matches for "endo".
Did you mean:
end
2012 Nov 04
1
structural equations using sem package
Hello
I am using sem to look at the direct effect of one variable on another but i am uncertain if i am progressing correctly.
An example:
covar1<-? matrix(c(0.4,-0.2,3,-0.2 , 0.3,-2 , 3 ,-2 , 60), nrow=3,byrow=T)
rownames(covar1)<-colnames(covar1)<-c("endo","exo","med")
path1<-matrix(c(? ? "exo -> endo",? "g1", NA,
????????????????????????? "exo -> med", "g2",? NA,
????????????????????????? "med -> endo", "g3", NA
??? ??? ??? ??? ??? ??? ??? "med<...
2010 May 12
2
Reading R code help--Beginner
...to -Regressive
program written by Ranier Puhr from the R-forge group. I need help
interpreting the processes of the following code.
I am going to
post in parts since it's pretty long:
GVAR <- function (data, tw = NULL, p, q = p, r = NULL, weight, case,
exo.var = FALSE,
d = NULL, endo = NULL, ord = NULL, we = NULL,
method = "max.eigen")
# data ... timeseries data as list (each entry is a matrix of a subsystem of variables,
# if exo.var=TRUE the last entry are exogeneous variables)
# tw ... time window, vector of start and end point...
2009 Jan 28
3
for/if loop
...rite such loop in R.
rr=1;
ii=1;
pp=1;
do until ii==n+1;
if pan[ii,1] ne pp;
hll[pp,1]=sumc(lselb1[rr:ii-1,1]);
hll[pp,2]=sumc(lselb2[rr:ii-1,1]);
rr=ii;
pp=pp+1;
endif;
if ii==n;
hll[pp,1]=sumc(lselb1[rr:ii,1]);
hll[pp,2]=sumc(lselb2[rr:ii,1]);
rr=ii;
pp=pp+1;
endif;
ii=ii+1;
endo;
--
View this message in context: http://www.nabble.com/for-if-loop-tp21701496p21701496.html
Sent from the R help mailing list archive at Nabble.com.
2010 Jul 31
3
a problem
...file) :
??'datafile'
> write.foreign("exp-11.xls")
???list(df = df, datafile = datafile, codefile = codefile) :
??'datafile'
> mydata<-scan("exp-11.xls",what=list(sex="",smo="",comp="",TNum="",TG="",Endo="",Y="",HeT="",Year="",TuS="")
+
+
+ mydata
??: ????? ?
"mydata"
> mydata
??: ?????'mydata'
Can you tell me why the R project can't read the file,thank you !...
2013 Aug 02
1
External sip phones register with the servers IP...
...rything is working fine. The problem we are having is that we
cannot use any external phone connected through the Internet. This used to
work fine with 1.8 but since the upgrade whenever you register any phone from
an outside network the phone tries to register using the servers internal IP.
I endo up having something like this:
Sending to 187.163.93.235:58545 (no NAT)
-- Registered SIP '2003' at 192.168.2.50:58545
Reliably Transmitting (no NAT) to 192.168.2.50:58545:
OPTIONS sip:2003 at 192.168.2.50:58545;ob SIP/2.0
Via: SIP/2.0/UDP 192.168.2.50:5060;branch=z9hG4bK5f2019c0
Max-F...
2007 Sep 12
1
vars package, impulse response functions ??
I am fitting a reduced form VAR model using VAR in the vars library. I have
several endogenous variables, and two exogenous variables. I would like to
explore the effects of a shock to one of the exogenous variables on one of
the endogenous variables. Using irf in the vars library only calculates the
irf for the endogenous variables, this is obviously by design, is there some
theoretic...
2010 Jul 21
1
Trigger after yum update
...un automatically after 'yum update' ?
I'd like to avoid writing shell wrappers for yum and looking for yum-way solution ;-)
Regards
Przemyslaw Bak (przemol)
----------------------------------------------------------------------
Wyprzedaz do -70%!!! Wejdz na Endo.pl
http://linkint.pl/f2791
2009 Nov 02
3
partial matching with grep()
dear all,
This is a probably a silly question.
If I type
> grep("x",c("a.x" ,"b.x","a.xx"),value=TRUE)
[1] "a.x" "b.x" "a.xx"
Instead, I would like to obtain only
"a.x" "b.x"
How is it possible to get this result with grep()?
many thanks for your attention,
best,
vito
--
2003 Jan 31
3
Samba - winXP lookup
Hi all,
We're using samba, and we'd tried
it with multiple Windows versions: 98, ME, 2000 and XP, in that order.
However, when we migrated from 2000 to XP, a problem apeared that was not
present in any other Windows version. Everthing works fine, excepting that
when I am using the samba shares (browsing, opening files, etc...) from time
to time I get a ~30 second lockup. During that time,
2009 Jan 28
2
t.test in a loop
Hi All,
I've been having a little trouble with creating a loop that will run a a
series of t.tests for inspection,
Below is the code i've tried, and some checks i've looked at.
I've used the get(paste()) idea as i was told previously that the use of the
eval should try and be avoided.
I've run a single syntax to check that my systax is correct and works
without any problems