Friday, November 11, 2022

[FIXED] How to make a proc freq table for one variable given another variable

Issue

I need to make a proc freq levels table for a variable "type", but only for entries that are ' USA ' under the "place_of_origin" variable.

Right now I'm doing

proc freq data=CarsVROOM nlevels;
tables type;
run;

and it shows me the freq table for all the "Type"s, but I want to see the freq table for all the "Type"s only for ' USA ' objects. What options do I add to the tables statement? Thanks :)


Solution

Do you mean to have where statement?

proc freq data=CarsVROOM nlevels;
  where type = 'USA';
  tables type;
run;    


Answered By - Richard
Answer Checked By - Cary Denson (PHPFixing Admin)

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.