by saspower | Mar 1, 2023 | SAS Online Course in India
The input methods in SAS programming are used to read the raw data. The raw data may be from an external source or from in stream data lines. The input statement creates a variable with the name that you assign to each field. So, you have to create a variable in the...
by saspower | Feb 28, 2023 | SAS Online Course in India
Column input method is very important method for reading the raw data. It is much more advance as compared to list input method. In list input method only 8 characters are allowed /if more than this it will truncate for that purpose, we are using the length statement...
by saspower | Feb 4, 2023 | SAS Online Course in India
TLF stands for table listing and figures which are mostly used during submission of clinical trials data.it is standard template or mock shells /accordingly we will prepare and placed the results.in general we are dealing with two data types Numeric—— for...
by saspower | Jan 25, 2023 | SAS Online Course in India
Macro Programming is very useful for automating the programming code. It is used when repetion of work is there, in simply manner it avoids the hard coding program. It is a case sensitive so carefully assigned the macro variables, but proper knowledge of SAS is...
by saspower | Jan 24, 2023 | SAS Online Course in India
Proc format is important tools which are mostly used in clinical SAS coz naming conventions are too much as per SDTM and ADAM specification. Proc format is different from format and in format options. Proc format means user defined format or some guidelines format. We...
by saspower | Jan 23, 2023 | SAS Online Course in India
S.NoData StepsProc Steps1.Start with Data key wordStart with proc key word2.Create a sas data setProduce the report3Reflected in log, how many observations and variables are there also describing the processing timeProduce the report in output windows4.Read and...