Hello there !
I'm looking to keep in a table the observations whose values of a price variable are close, for instance (1% to each other).
For instance
Obs1 - 356.12
Obs 13 - 356.13
Obs 26 - 234.13
Obs 73 - 234.14
Etc...
Thanks a lot for your help !
(I precise that I do not have a very advanced level on SAS)
Sort by the price variable, then you can use lag() and a look-ahead to compare with previous and following values.
For (tested) code, provide an example of your dataset in usable form (a data step with datalines).
Sort by the price variable, then you can use lag() and a look-ahead to compare with previous and following values.
For (tested) code, provide an example of your dataset in usable form (a data step with datalines).
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.