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 |
Describe what are the different levels of administrative users in sas? : sas-grid-administration
Describe how you would pass data to macro.
What is the sas data set? : sas-grid-administration
what is sas metadata repository? : Sas-bi
i have multiple .csv files in a unix directory. every file is having variable names as header.even for empty file also. suppose take 3 files a.csv b.csv c.csv a.csv contains data as name;age,salary; raja;34;4000; ravi;33;5000; kumar;25;3000; b.csv contains data as name;age,salary; ajay;40;4500; and c.csv contains name;age,salary; (only headers) Now i want to import and append all these files in to a single dataset. i tried infile statement with *.csv to import all at a time. but i m not getting correct data. please help me . its urgent. thank you in advance
If you?re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
Did you used proc test? when?
0 Answers Accenture, Quintiles,
what has been your most common programming mistake? : Sas programming
What is the Program Data Vector (PDV) and What are its functions?
Hi, I have one dataset, could you please ans for this. id amount paid_amount 1 700 400 2 900 250 3 300 300 a 400 250 b 500 320 c 800 650 x 200 190 y 900 250 z 300 180 i want create new dataset having id and paid_amount who are paid high amount comparing amount. ex: 1d paid_amount 3 300 c 650 x 190
how are numeric and character missing values represented internally? : Sas programming
what are different type of sas servers ? On which server does the sas code execute ?