哪位大神会用sas软件画散点图、饼状图等呀?求助求助求助呀~
1个回答
展开全部
饼图:
goptions reset=all cback=white border htitle=12pt htext=10pt;
title1 "Types of Vehicles Produced Worldwide";
proc gchart data=sashelp.cars;
pie type / other=0
midpoints="Truck" "SUV" "Sedan" "Wagon" "Sports" "Hybrid"
value=none
percent=arrow
slice=arrow
noheading
plabel=(font='Albany AMT/bold' h=1.3 color=depk);
run;
quit;
散点图:
proc sgplot data=sashelp.class;
scatter x=height y=weight / group=sex;
run;
goptions reset=all cback=white border htitle=12pt htext=10pt;
title1 "Types of Vehicles Produced Worldwide";
proc gchart data=sashelp.cars;
pie type / other=0
midpoints="Truck" "SUV" "Sedan" "Wagon" "Sports" "Hybrid"
value=none
percent=arrow
slice=arrow
noheading
plabel=(font='Albany AMT/bold' h=1.3 color=depk);
run;
quit;
散点图:
proc sgplot data=sashelp.class;
scatter x=height y=weight / group=sex;
run;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询