what is portability of sas programmes?
Answers were Sorted based on User's Feedback
Answer / devashish
Transferring SAS Program from one remote Location to
anathor is portabilty of SAS Program
Access to SAS/CONNECT Required
also Transferring a dataset or SAS file requires Transport
format
Use of XPORT and porc Copy
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / jim e
I would suggest that this is the ability to run SAS code
under different operating systems. Obviously there are OS
restrictions such as how the libname statement syntax is
constructed.
Basic SAS code will transport between OS but you need to
check some things like operators. If you use NE, GT, LT,
GE, LE then you wouldn't need to change those aspects of
your code between MVS and Windows wheras ¬=, < and > etc
would need to be changed. The concatenation operator !! is
usable in both too. If you use SAS Connect with (proc
upload and proc download) to port you code and data between
OS then SAS takes care of these changes for you.
| Is This Answer Correct ? | 2 Yes | 0 No |
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
Under what circumstances would you code a SELECT construct instead of IF statements?
What do the mod and int function do? : Sas programming
Tell me about % include and % eval? : sas-macro
How would you create multiple observations from a single observation?
What is the difference between an informat and a format. Name three informats or formats.
it will become easy if uuu provide website linkssss and list of consultanciessssss
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.
There is a river notoriously known for it?s large crocodile population. With ease, how do you safely cross it?
Can you calculate the mean, median and mode of the following data set using data step logic? Don't use any function or procedure. data a; input age @@; datalines; 22 32 32 32 43 23 24 56 45 54 28 29 27 26 25 28 30 20 18 37 36 47 46 56 19 20 ; run; I have calculated the mean which i have posted in the answer section.
what is option year cuttoff in sas
How would you code a macro statement to produce information on the SAS log? This statement can be coded anywhere.