Does anybody have SAS Training manual or documentation or
can you refer me any book to have better understanding on
SAS. I am fresher to SAS tool. (Ready to pay)
Answers were Sorted based on User's Feedback
Answer / chandrakanth
type little sas book.pdf in the google search you will find this book which is recommended most of the SAS programmers for learning and documentation...
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / venu
For more information about
SAS EBI (Enterprise Business Intelligence),
SAS EDI (Enterprise Date Integration),
SAS VA (Visual Analytics) &
SAS Platform Administration,
Please contact MuralaVenu@gmail.com or Skype ID: VenuMurala
SASTraining4U
| Is This Answer Correct ? | 0 Yes | 0 No |
how to display duplicated observations in a data using base sas.
13 Answers HCL, TCS,
what are sas/access and sas/connect? : Sas programming
how does sas handle missing values in a merge? : Sas programming
Give some examples where proc report’s defaults are different than proc print’s defaults?
Name and describe few sas character functions that are used for data cleaning in brief.
How would you delete observations with duplicate keys?
Name any two sas spawners? : sas-grid-administration
How would you create multiple observations from a single observation?
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
How do you download a flat file from Mainframe to your local PC using SAS?
which date functions advances a date time or date/time value by a given interval? : Sas programming
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.