PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Friday, November 11, 2022

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

 November 11, 2022     proc, sas     No comments   

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)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

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

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing