In SAS 9.4 scenario 2, one of the condition is to "remove observations with RestHR values that are greater than or equal to 70."
This condition should be written like:
where RestHR < 70;
or, the answer is correct and it should be like:
where RestHR <= 70;
I just want to check if I understand the question correctly or if i misunderstood the operation sigh.
Thanks!
Remove observations with RestHR values that are greater than or equal to 70
is the same as
Keep observations with RestHR values that are smaller than 70
isn't it?
So: where RestHR < 70;
Unless the where clause is used in a delete statement for example, in which case
Remove observations with RestHR values that are greater than or equal to 70
is written
where RestHR >= 70;
Remove observations with RestHR values that are greater than or equal to 70
is the same as
Keep observations with RestHR values that are smaller than 70
isn't it?
So: where RestHR < 70;
Unless the where clause is used in a delete statement for example, in which case
Remove observations with RestHR values that are greater than or equal to 70
is written
where RestHR >= 70;
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 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.