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 |
Can you execute a macro within a macro? Describe. : sas-macro
what are the scrubbing procedures in sas? : Sas programming
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
What is Linear Regression?
Below is the table. Required to be output should be the highest number of each student_id. Example. Student_id Subject Marks 1 Hindi 86 2 Hindi 70 3 English 80 . Calculate sum and average marks for each group of student_id Example. Student_id Subject Marks Total Marks Average 1 English 40 181 60.33333 2 English 67 196 65.33333 3 English 80 160 53.33333 PLEASE PROVIDE THE CODE OF ABOVE PROBLEMS
What is slibref?
How to get part of string form the source string without using sub string function in SAS?
I have 2 data sets A & B. Both have a variable called Age in them, each of them specifying a different functionality. In my program I use bot these data sets. How do I specify which Age variable I want to use?
What are Dashboard reports?And significance of these in analysis?
Which is the best place to learn SAS clinicals and Oracle clinical in hyderabad?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
In this question, I rename the numeric variable phone to numphone and then try use phone=put(numphone,comma16.) to store the numeric value numphone as a string value in phone. But I get a warning tha numphone already exists and in the data sat phone doesnt exist and numphone is set to missing. Why? data names_and_more; input Name $20. Phone : comma16. Height & $10. Mixed & $8.; Name = tranwrd(Name,' ',' '); rename phone = numphone; phone = put(numphone,comma16.); datalines; Roger Cody 9,087,821,234 5ft. 10in. 50 1/8 Thomas Jefferson 3,158,488,484 6ft. 1in. 23 1/2 Marco Polo 8,001,234,567 5Ft. 6in. 40 Brian Watson 5,183,551,766 5ft. 10in 89 3/4 Michael DeMarco 4,452,322,233 6ft. 76 1/3 ;