Summarise and calculate the items specifically in the dataset using proc sql

前端 未结 0 1485
慢半拍i
慢半拍i 2020-12-02 00:22

My dataset and attempt

data mydata;
input Category $ Item $;
datalines;
A 1
A 1 
A 2
B 3
B 1
;

proc sql;
create table mytable as 
    select *, count(Categor         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题