BookmarkSubscribeRSS Feed
namrata
Fluorite | Level 6

Hi all

I need to create a count variable that contains the total number of firm years for each firm in a panel data.

year   permno  firm

1          a          x

2          a          x

3          a          x

4          a          x

1          b          y         

2          b          y    

3          b          y

Now I need to create a count variable that gives me:

year   permno  firm      count

1          a          x          4

2          a          x          4

3          a          x          4

4          a          x          4

1          b          y          3

2          b          y          3

3          b          y          3

Thus, I can delete all firms that have less than say 3 years of observations.

The code till now is:

data want;

set have;

by permno;

if first.permno then count =1;

else count+1;

run;

this gives me the total on the last count row .I do not know how to create directly a variable that gives me the total on each row for each firm.

3 REPLIES 3
Ksharp
Super User

Easy.

data have;
input year   permno $ firm $;
datalines;
1          a          x
2          a          x
3          a          x
4          a          x
1          b          y         
2          b          y    
3          b          y
;
run;
proc sql;
create table want as
 select *,count(*) as count
  from have
   group by firm;
quit;

Ksharp

Haikuo
Onyx | Level 15

Adding one statement to Ksharp's code will give you one stone, two birds.

proc sql;

create table want as

select *,count(*) as count

  from have

   group by firm  having calculated count gt 3

;

quit;

Regards,

Haikuo

namrata
Fluorite | Level 6

Thanks a lot!The suggestions worked.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 3 replies
  • 10251 views
  • 0 likes
  • 3 in conversation