Hi,
Please can someone explain with a simple dataset merge and proc sql example the difference between following scenarios:
1. if a
2. if b
3. if a and not b
4. if not a and b
Thanks
These are simple logical conditions, whether it's a DATA step, SQL, or a treatise by Aristotle.
Assuming that "a" and "b" can be either true or false:
if a ==> true whenever "a" is true, regardless of the value of "b"
if b ==> true whenever "b" is true, regardless of the value of "a"
if a and not b ==> true whenever "a" is true and "b" is false
if not a and b ==> true whenever "a" is false and "b" is true
In SAS programming, if "a" and "b" represent numeric amounts rather than comparisons, SAS considers 0 and missing to be false and any other value to be true.
Good luck.
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!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.