|
stata8.2画图出现异常,有谁遇到过同样问题么 安装了stata8.0,然后用8.2的exe覆盖 born jan 10 2005 画图出现异常,有些8.0支持的命令不支持了,设置version 8.0也无济于事。 . version 8 6 ~& u* I2 N7 x( Q, s0 N9 R5 e
. do "c:\data\test6"
. Z8 m% h5 B# C% p1 G. sysuse uslifeexp, clear (U.S. life expectancy, 1900-1999)
! n- P9 o/ Z @4 u: x8 a; m. gen diff = le_wm - le_bm
5 e2 _1 z. \4 f9 P o% ]. label var diff "Difference" 6 l4 _* q% z) z9 K
. . #delimit ; delimiter now ; . line le_wm year, yaxis(1 2) xaxis(1 2) > || line le_bm year > || line diff year > || lfit diff year > ||, > ylabel(0(5)20, axis(2) gmin angle(horizontal)) > ylabel(0 20(10)80, gmax angle(horizontal)) > ytitle("", axis(2)) > xlabel(1918,axis(2)) > xtitle("",axis(2)) > ytitle("Life expectancy at birth (years)") > title("White and black life expectancy") > subtitle("USA, 1900-1999") > note("Source: National Vital Statistics, Vol 50, No. 6" > "(1918 dip caused by 1918 Influenza Pandemic)") > legend(label(1 "White males") label(2 "Black males")) > legend(col(1) pos(3)) > ; invalid label specifier, : 1918: invalid syntax invalid syntax r(198);
3 I+ g! d$ e, D5 _+ [1 \4 zend of do-file r(198);
# r; V3 g( A) K# b) G; i. do "c:\data\test2"
8 I" t4 z) R7 N5 p& R. sysuse lifeexp, clear (Life expectancy, 1998) 7 ^& j% ~0 m9 v% B/ f9 b/ j5 t9 c2 k
. gen gnp000 = gnppc/1000 (5 missing values generated)
, u( L I9 m+ H. W5 J5 p$ n2 i. label var gnp000 "人均GNP, 千元"
# S! w2 f+ r: \$ Z {. label var lexp "出生期望寿命"
$ q2 Q2 V. B! j6 S* @6 ~. scatter lexp gnp000, xsca(log) xlabel(.5 2.5 10(10)40, grid) invalid label specifier, : .5 2.5 10(10)40: invalid syntax invalid syntax r(198); " o, c6 S: P9 c; t3 j
end of do-file r(198); .
# T! @8 F% p6 g" l' E0 L另外原来图中的颜色1种是红色,1种是蓝色,现在全变成黑色和白色。 . do "c:\data\test4"
! G% F D$ y+ ]# y. sysuse census, clear (1980 Census data by state)
" U) a4 S% b* I* x- ~7 B6 R. gen drate = divorce / pop18p
9 H2 k; Q: P6 M6 s1 N. label var drate "离婚率" # w" D: @1 ~; C. I! E/ a" A
. scatter drate medage [w=pop18p] if state!="Nevada", msymbol(Oh) note("Stat > e data excluding Nevada" "Area of symbol proportional to state's populatio > n aged 18+") (analytic weights assumed) (analytic weights assumed) (note: named style p1 not found in class seriesstyle, default attributes used (note: named style circle not found in class markerstyle, default attributes used (note: named style p1 not found in class markerstyle, default attributes used
2 v6 [- O s9 G D/ c: F+ g. end of do-file
. F, A8 Z( W8 ~' ?& \/ g* Q设置version 6也无济于事 . use "C:\DATA\ex1.dta", clear : V: c/ e6 Y+ X
. version 6 & ]; I: i" w! ?' G4 s
. graph x 0 E! M1 [, p1 V% r L7 S& v* M$ T
. line x y (note: named style p1 not found in class seriesstyle, default attributes used (note: named style circle not found in class markerstyle, default attributes used (note: named style p1 not found in class markerstyle, default attributes used . U, F& z! i! l
另外,汉字在输出窗口能显示,但是选择的时候就变成乱码。
|