SAS Procedures

Help using Base SAS procedures
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Thalitacosta
Obsidian | Level 7

The code below is returning 0 for all values below 0, including missing values. How to count missing values separately?

proc sql;

create table xxx as

select *,

case when pd < 0 then 0 else

case when pd>= 1.3220535 then 1.3220535 else pd end end as pd_new*/

from tab

;

quit;

 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

@Thalitacosta wrote:

The code below is returning 0 for all values below 0, including missing values. How to count missing values separately?

proc sql;

create table xxx as

select *,

case when pd < 0 then 0 else

case when pd>= 1.3220535 then 1.3220535 else pd end end as pd_new*/

from tab

;

quit;

 


Rule number 1: Missing is less than any value.

If you want to detect missing then use the MISSING function   when missing(pd) then ...

 

 

View solution in original post

3 REPLIES 3
ballardw
Super User

@Thalitacosta wrote:

The code below is returning 0 for all values below 0, including missing values. How to count missing values separately?

proc sql;

create table xxx as

select *,

case when pd < 0 then 0 else

case when pd>= 1.3220535 then 1.3220535 else pd end end as pd_new*/

from tab

;

quit;

 


Rule number 1: Missing is less than any value.

If you want to detect missing then use the MISSING function   when missing(pd) then ...

 

 

Tom
Super User Tom
Super User

You seem to have too many CASE keywords in your code. You only need one CASE to handle this.

 

You can use the MISSING() function to test for missing.

case when missing(pd) then . 
     when pd < 0 then 0 
     when pd>= 1.3220535 then 1.3220535 
     else pd 
end

Or use MIN() and MAX() functions.

case when not missing(pd) then max(0,min(pd,1.3220535)) else . end

 

 

Note also that the largest missing value is .Z so you could make sure the value is larger than that.

tarheel13
Rhodochrosite | Level 12

do case when .z < pd < 0 instead of just < 0

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 8126 views
  • 1 like
  • 4 in conversation