Displaying 4 results from an estimated 4 matches for "vaxi".
Did you mean:
vai
2012 Mar 07
3
sobre googlevis
Buenas.
Esta mañana estoy trasteando un poco con googlevis, sobre todo para ver
si introducimos algunos gráficos chulos en la página web de la empresa (
hacemos estudios sociológicos).
Y estaba viendo esta página
http://neurochem.sisbio.recerca.upc.edu/?p=276 y no encuentro la forma
de reproducir el gráfico de las puntuaciones factoriales . Usando
gvisScatterChart puedo dibujar los puntos
2005 Jul 28
1
conversion from SAS
...chla1=.;
if bloom=1 then chla2=chla; else chla2=.;
run;
symbol1 i=none value=plus color=red;
symbol2 i=none value=plus color=green;
symbol3 i=join value=none line=1 color=black;
axis1 logbase=10; axis1;
proc gplot data=chla_sep;
plot chla2*date=1 chla1*date=2 (ucl pred
lcl)*date=3 /overlay vaxis=axis1;
by station;
run;
quit;
proc glm data=chla_sep;
class station year month;
model salinity temperature Transparency__m_
Nitrate__mmol_l_1_ Phosphate__mmol_l_1_
Silicate__mmol_l_1_=bloom month/solution;
by station;
run;
quit;
Thanks
2012 Feb 20
3
Run function several times changing only one argument - without a loop
Dear people,
I created a plot which looks like this:
Ee1<-matrix(c(88,86,74,62,41),ncol=5)
colnames(Ee1)<-c("Lehrer","Lehrerinnen","Klassenkollegen","Klassenkolleginnen","Geschwister")
par(las=1)
par(mar=c(5,13,4,2))
barplot(Ee1,horiz=T,col="grey85",border="NA",xlim=c(0,100),axes=F)
axis(2,pos=10, tick=T, tcl=F,
2004 Jul 04
2
smooth non cumulative baseline hazard in Cox model
...pt;
s=lo+(1:npt)`*inc;
group=j(npt,1,m);
slag=1//survival[1:n-1];
h=1-survival/slag;
x = (j(npt,1,1)*t` - s*j(1,n,1))/w;
k=.75*(1-x#x)#(abs(x)<=1);
lambda=k*h/w;
append;
end;
quit;
%if &nset = yes %then %let c==group;
%else %let c=;
proc gplot data=_plt_;
plot lambda*s &c / vaxis=axis1 vzero haxis=axis2;
axis1 label=(angle=90 f=titalic 'Hazard Function' ) minor=none ;
axis2 label=(f=titalic "Time (bandwidth=&width)") minor=none;
symbol1 i=join color=black line=1;
symbol2 i=join color=red line=2;
symbol3 i=join color=green line=3;
symbol4 i=join...