BookmarkSubscribeRSS Feed
vishalrajpoot3
Obsidian | Level 7

 

I know proc means with N and Nmiss option provides the no of populated and missing observation for numeric variable. But which proc/options we use to know the missing value of character variable ?

 

Lets have the below data set as an example.

 

data abc;
input name $ state $;
datalines;
a up
b mp
c .
d hp
e .
f mp
. gj
h hp
;
run;

4 REPLIES 4
PeterClemmensen
Tourmaline | Level 20
proc freq data=abc;
   tables state / missing nocum nopercent;
run;
Ksharp
Super User

PROC SQL.

 

data abc;
input name $ state $;
datalines;
a up
b mp
c .
d hp
e .
f mp
. gj
h hp
;
run;
proc sql;
select nmiss(name) as nmiss_name,nmiss(state) as nmiss_state
 from abc;
quit;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 782 views
  • 0 likes
  • 5 in conversation