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 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...
by saspower | Nov 20, 2022 | SAS Online Course in India
In SAS joining the two or more tables done by interleave and merging method, but in this joining data should be sorted before adding. So, it will alter the original table until or unless you can use the out statement. So out statements are required during sorting...
by saspower | Nov 20, 2022 | SAS Online Course in India
Update statements are most useful in data science industries. It having following task which are listed below change the values of variables in the master data set add observations(rows) to the master data set add variable(column)s to the master data set. Rules In...
by saspower | Nov 18, 2022 | SAS Online Course in India
Whenever You had submitted the SAS programming code so it is processed in two phases Compilation phase Execution Phase In compilation phase each statement is scanned with syntax error and any other mistakes, if any error it will prevent the data processing. If the...