03-15-2019
anjita
Fluorite | Level 6
Member since
01-04-2019
- 7 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by anjita
Subject Views Posted 2976 03-15-2019 08:19 AM 838 03-09-2019 07:23 AM 1343 02-27-2019 07:18 AM 1381 02-05-2019 07:02 AM 1164 01-30-2019 07:17 AM 2530 01-12-2019 06:47 AM 1031 01-04-2019 07:19 AM -
Activity Feed for anjita
- Posted Why Is Sas Considered Self-documenting? on SAS Programming. 03-15-2019 08:19 AM
- Posted Re: Proc glm on SAS Programming. 03-09-2019 07:23 AM
- Posted Re: would you code a select construct instead Of If Statements on SAS Programming. 02-27-2019 07:18 AM
- Posted Re: Variables written to output dataset in DATA STEP on SAS Programming. 02-05-2019 07:02 AM
- Posted which function is the best to locate that data: scan, index, or indexc on SAS Programming. 01-30-2019 07:17 AM
- Tagged interleaving in SAS on SAS Programming. 01-12-2019 06:48 AM
- Posted interleaving in SAS on SAS Programming. 01-12-2019 06:47 AM
- Tagged interleaving in SAS on SAS Programming. 01-12-2019 06:47 AM
- Posted Re: How would I code a merge that will write the matches of both to one data set, the non-matches fr on SAS Programming. 01-04-2019 07:19 AM
03-09-2019
07:23 AM
Proc glm performs simple and multiple regression, analysis of variance (ANOVA), analysis of covariance, multivariate analysis of variance and repeated measure analysis of variance.
... View more
02-27-2019
07:18 AM
The select statement is used when you are using one condition to compare with several conditions like. Data exam; Set exam; select (pass); when Physics gt 60; when math gt 100; when English eq 50; otherwise fail; run;
... View more
02-05-2019
07:02 AM
Both DROP and KEEP can be used to limit the variables in the dataset. The DROP=option tells SAS which variables you want to If you place the DROP= option on the SET statement, SAS drops the specified variables when it reads the input data set and if you place the DROP= option on the DATA statement, SAS drops the specified variables when it writes to the output data set. The KEEP=option tells SAS which variables you want to If you place the KEEP= option on the SET statement, SAS keeps the listed variables when it reads the input data set. On the other hand, if you place the KEEP= option on the DATA statement, SAS keeps the specified variables when it writes to the output data set.
... View more
01-30-2019
07:17 AM
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
... View more
01-04-2019
07:19 AM
Data one two three; Merge DSN1 (in=A) DSN2 (in=B); By ID; If A and B then output one; If A and not B then output two; If not A and B then output three; Run;
... View more