I'm working with birdstrike data, and I would like to run statistics to verify if the frequency of birdstrikes does follow the number of aircraft movements around specific airports.
I have the data of birdstrikes and movements for a certain period. I can have two sets of data with ten years each. Could I use the aircraft movement on the total of birdstrikes to get the expected number of birdstrikes?
Exemple:
lets say: set 1 = 900 mov and set 2= 1100 mov
900+1100=2000
900/2000=0.45 | 1100/2000=0.55
set 1 = 45% and set 2= 55%
total of birdstrikes= 200+300=500
Expected:
Set 1=500*0.45=225
Set 2=500*0.55=275
set 1 | set 2
Obs: 200 | 300
Exp: 225 | 275
Is this possible inside the Chi-Square, Goodness of fit? Or is it recommended another kind of test for this kind of analysis?