/* Lesson 11-02 */ /* File Name = les1102.sas 12/21/21 */ options nocenter linesize=78 pagesize=30; options locale='en_US'; /* options locale='ja_JP'; */ proc printto print = 'StatM21/les1102-Results.txt' new; data dragons; infile 'StatM21/Dragons21.csv' firstobs=8 dlm=',' dsd missover encoding=sjis termstr=crlf; input No $ Name : $24. Pos $ DoBY DoBM DoBD shintyou taijyuu tou $ da $ bikou $; proc print data=dragons(obs=10); run; proc chart data=dragons; hbar shintyou; vbar shintyou; hbar DoBY; vbar DoBY; run; proc freq data=dragons; table DoBM tou da tou*da; run; proc freq data=dragons; table shintyou; run;