Hi,
I need to create a SAS Map of USA using SAS Graphs(Proc
Gmap).The data i have dosent contain any co-ordinates of USA
cities or counties or states, and the zip codes are
diffrent in the data i have from the zip code in the
Maps.US dataset in the Maps Library for SAS MAPS.
the data i have is a sales report. i have to generate the
maps according to the states,cities aligned in the sales
data, HELP Appriciated
Answer Posted / santosh.pat69
I have used teh following syntax
Proc gmap
data=xxxx
maps=maps.us;
id zip;
choro zip/NOlegend;
quit;
here i have used Zip instead of state.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What do you know about sas data set?
what are all the reports you generated in your recent project?
How are numeric and character missing values represented internally?
what is SAS OPTIMIZATION?
What is the use of %include statement?
How to convert a numeric variable to a character variable?
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
What is PDV?
Explain what is SAS informats?
what is snowflake schema? : Sas-di
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
What makes sas stand out to be the best over other data analytics tools?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
What are the default statistics that proc means produce?
What is the difference between %local and %global? : sas-macro