.- help for ^me^ :: Scott Long \ 2007-07-28 .- Reset everything: ^clear all^ Updates: ^ado dir^ : list installed packages ^update all^ : update ado-files and executable ^adoupdate, update^ : update user written packages Axes options: ^x/yscale(lo,hi)^ ^x/ylabel()^ ^x/ytic()^ ^x/yline()^ Symbols: ^O^ large circle ^S^ large square ^T^ large triangle ^o^ small circle ^d^ small diamond ^p^ small plus ^x^ x ^i^ invisible ^ .^ dot Mark missing values mark nomissv label var nomissv "1 if no missing" label def nomiss 1 NoMissing 0 Missing label val nomissv nomiss markout nomissv `lhs' `rhs' replace nomissv = . if nomissv==0 keep if nomissv==1 Scatterplot for two groups twoway (scatter y x if a==1, msymbol(circle_hollow) mcolor(red)) /// (scatter y x if a==0, msymbol(square_hollow) mcolor(blue)) /// , title(Compare two groups) .-