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.
LOLO
Obsidian | Level 7

Hi!

I'm trying to take the average of a variable and impute that value back into the variable whenever there is a missing value. This code below works except for that I wind up with two variables called cstelass_gr8 and readss_gr8. I need the imputed mean to go directly into the original variable.

proc sql ;

      select cstelass_gr8, readss_gr8, avg(cstelass_gr8) as impmean_ca, avg(readss_gr8) as impmean_pa, i_priorachieve, i_statid,

      case

            when i_priorachieve= 0 and i_statid = "A"

                  then  calculated impmean_ca

      end as cstelass_gr8,

      case

            when i_priorachieve= 0 and  i_statid = "B"

                   then calculated impmean_pa

      end as readss_gr8

     

     

      from a ;

     

quit ;

1 ACCEPTED SOLUTION

Accepted Solutions
LOLO
Obsidian | Level 7

That did it! Thank you so much!

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

The SQL query in your message will not work, it isn't SQL. If you want to impute variables cstelass_gr8 and readss_gr8 with the overall mean, simply use:

proc sql ;

select

  coalesce(cstelass_gr8, mean(cstelass_gr8)) as cstelass_gr8,

  coalesce(readss_gr8,  mean(readss_gr8)) as readss_gr8,

  i_priorachieve,

  i_statid

from a;

quit ;

(not tested)

PG

PG
LOLO
Obsidian | Level 7

That did it! Thank you so much!

sas-innovate-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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
  • 2 replies
  • 3282 views
  • 0 likes
  • 2 in conversation