SAS中文论坛
标题:
请教:如何在SAS中建立新的地图呀
[打印本页]
作者:
shiyiming
时间:
2003-10-23 19:25
标题:
请教:如何在SAS中建立新的地图呀
1 如何在SAS中建立新的地图呀,?
2 怎么把相关的数据和地图中的柱型图联系起来呢?
<!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
3 呵呵,你们是怎么学的那么好的呢,,能否把好的经验和大家聊聊?
作者:
shiyiming
时间:
2003-10-25 11:37
1、用菜单的方式建立地图:Solutions->Analysis->GIS->Import->Imortt Type选SASGRAPH->SAS Graph Dataset选Maps.China->按钮Import->按钮Close
2、用程序方式建立地图并且关联人口数据:
filename odsout 'c:\test.html';
data work.china2; set maps.china2; population=int(ranuni(2)*100); run;
proc sort data=work.china2; by id; run;
goptions reset=all device=activex;
ods listing close;
ods html body=odsout;
proc gmap data=work.china2;
id _map_geometry_;
block population/midpoints=0 to 100 by 20;
run;
quit;
ods html close;
ods listing;
作者:
shiyiming
时间:
2003-11-1 16:14
data 谢谢你,斑竹;
infiel '为了感谢你的热心帮助';
input 一定好好学SAS 呵呵;
run;
欢迎光临 SAS中文论坛 (http://mysas.net/forum/)
Powered by Discuz! X3.2