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 |
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
Did you used proc lifetest? when?
2 Answers Accenture, Parexel, Quintiles,
What is slibref?
How can you create a macro variable with in data step? : sas-macro
what are all the ways to define macro variable??
2 Answers GSK GlaxoSmithKline,
What is the difference between SAS Data step and SAS PROC SQL, and which is better?
Are you sensitive to code walk-throughs peer review or QC review?
What are the automatic variables for macro? : sas-macro
Differentiate input and infile.
Are you familiar with special input delimiters How are they used?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
You need to perform an analysis on a massive dataset by groups, but are unable to sort the data due to memory constraint. How would you accomplish the task?