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 / 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 |
IS SAS COMPILER OR INTERPRETER? EXPLAIN?
3 Answers Aon Hewitt, HSBC, SCL, TCS,
What is program data vector (pdv)?
Which function is used to count the number of intervals between two sas dates?
How do i read multiple spaces in datasets?
How would you delete observations with duplicate keys?
what is the need of INDEX in datasets?
Do you think professionally?
if x=round(26.3,10)-1 then x= how much and how explain?
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?
What is Transaction...? And what are Comment, Roll back n Save point..?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?