Can Some one Explain How the Datasets from SAS can be loaded
in to the MVS OS?
Answer / manoj jina
First of all you need a FTP tool for ease. Else you can use Import/Export Procedures. and Infile the Data in MVS.
| Is This Answer Correct ? | 1 Yes | 0 No |
what do you mean by data staging area? : Sas-di
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.
How would you define the end of a macro? : sas-macro
sas implimented companies in hyderabad
explain what is data set in sas? : Sas-administrator
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.
what the use of proc glm
What is the order of application for output data set options, input data set options and SAS statements?
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
How to convert HTML file into SAS dataset?
how does sas handle missing values in assignment statements? : Sas programming
What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;