Chang ,JX

рассказ и язык

Archive for March, 2008

different y axis unit

Posted by changjx on March 6, 2008

Stata
twoway connected y t ||connected var2 t, yaxis(2)

R
par(mar=c(5,4,2,4),bg=’snow2′)
plot(unemp~tse,type=’b',pch=16,
col=4,ylab=”,xaxt=’n',xlab=’Time’)
#minor axis
axis(1,at=stse,labels=stse,
col.axis=1, las=1,tck=-0.009)
#major axis
axis(1,at=ltse,labels=ltse,tck=0.009)
abline(v=1958,col=’purple’,lwd=2)
mtext(‘Unemployment rate’,2,padj=-3.5)
#y2 axis
par(new=T)
plot(GNP~tse,xaxt=’n',ann=F,yaxt=’n',col=2,
xlab=”,ylab=’GNP’,type=’b',pch=15)
axis(4,at=seq(80,120,7),
labels=seq(80,120,7))
mtext(‘GNP’,4,padj=3.5)

/*SAS*/

%LET PATH=C:\DATA;
DATA LONG;
INFILE “&PATH\LONGLY.CSV” DLM=’,';
INPUT GNPD    GNP    Unemp ArmedF Population    Year Employed;
RUN;

goptions reset=all cback=WHITE;
/*V=DOT,STAR,CIRCLE,SQUARE*/

SYMBOL1 C=BLUE V=DOT L=1 W=1 I=JOIN;
SYMBOL2 C=RED V=STAR L=2 W=1 I=JOIN;

/* Create axis definitions  F:TIME FORMAT(‘Helvetica’),
H:HEIGHT*/

AXIS1  LABEL=(F=times H=4 PCT
ANGLE=90 ‘GNP’) OFFSET=(0,0)   ORDER=(200 TO 600 BY 50);
AXIS2  LABEL=(F=times H=4 PCT ANGLE=90 ‘UNEMP’)
OFFSET=(0,0) ORDER=(100 TO 500 BY 50);
AXIS3 ORDER=(1947 TO 1962 BY 2);

/*cREATE LEGEND CONTENT*/
LEGEND1 LABEL=none VALUE=(‘GNP’ ‘unemp’)
position=(top left inside)offset=(3,-1);
LEGEND2 LABEL=none  VALUE=(‘UNEMP’)
position=(top left inside) offset=(3,-2.5);

TITLE F=times H=4 PCT ‘SAS GPLOT’;
PROC GPLOT DATA=LONG;
PLOT GNP*YEAR/OVERLAY VAXIS=AXIS1 HAXIS=AXIS3 LEGEND=LEGEND1 HREF = 1958;
PLOT2 UNEMP*YEAR/OVERLAY VAXIS=AXIS2 LEGEND=legend2;
RUN;
QUIT;

Posted in R, SAS, Stata | Tagged: , , , | Leave a Comment »

Русские пословицы

Posted by changjx on March 4, 2008

  • Аво́сь да как-нибу́дь до добра́ не доведу́т.
    • Transliteration: Avos’ da kak-nubud’ do dobra ne dovedut.
    • Translation: Maybe and somehow won’t make any good.
    • Moral: Don’t rely on chance.
  • Алты́нного во́ра ве́шают, а полти́нного че́ствуют.
    • Transliteration: Altynnovo vora veshayut, a poltinnivi chestvuyut.
    • Translation: One hangs the thief who stole altyn(3 kopecks), and honors the one who stole poltinnik(50 kopecks).
  • Аппети́т прихо́дит во вре́мя еды́.
    • Transliteration: Appetit prikhodit vo vremya yedy
    • Translation: The appetite comes during eating
    • English version: The appetite comes with eating

Posted in russia | Tagged: | Leave a Comment »

french proverbe

Posted by changjx on March 4, 2008

À coeur vaillant rien d’impossible.
【有志者事】
Read the rest of this entry »

Posted in fracais | Tagged: | Leave a Comment »

сейчас

Posted by changjx on March 1, 2008

j’ai appris les quatre langues à ce moment:le japon,le Français,l’russie,l,l’allemand.

C’était une expérience horrible, mais c’est particulièrement fascinant.

je crois que le langue est Une caractéristique de la culture populaire dans les pays.

Maintenant je sais que je me concentre plus sur moi l’examen de qualification et des cours.

Posted in fracais | Tagged: | Leave a Comment »