Hello experts,
Please, I would like to have the results of lag by retain function only[ i.e: w_1=lag(w), ...]
I want to use only "retain"
| w | w_1 | w_2 | w_3 |
| 1 | |||
| 2 | 1 | ||
| 3 | 2 | 1 | |
| 4 | 3 | 2 | 1 |
| 5 | 4 | 3 | 2 |
| 6 | 5 | 4 | 3 |
| 7 | 6 | 5 | 4 |
| 8 | 7 | 6 | 5 |
| 9 | 8 | 7 | 6 |
| 10 | 9 | 8 | 7 |
| 11 | 10 | 9 | 8 |
| 12 | 11 | 10 | 9 |
| 13 | 12 | 11 | 10 |
| 14 | 13 | 12 | 11 |
| 15 | 14 | 13 | 12 |
| 16 | 15 | 14 | 13 |
I don't think that's how RETAIN works.
What have you tried and why do you think RETAIN should be the solution?
Now use this technique to experiement just with W and W_1.
If your data is contained in a SAS data set, you can take advantage of the fact that all such variables are automatically retained. Assuming that you are working with numeric variables, you could use:
data want;
w_1=w;
set have;
run;
If you want to lag for a few observations, you have to explicitly retain those variables that are not coming from a SAS data set. For example:
data want;
w_3 = w_2;
w_2 = w_1;
w_1 = w;
set have;
retain w_1 w_2;
run;
The trick is to copy values before the SET statement replaces W.
@all: Thank you very much
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.