Hi all,
I'm interested in the Serious Accidents Punishment Act's impact on industrial accidents in South Korea.
However, I had a problem calculating the death rate for the given data.
My data does not have the total number of workers, which is about 19,000,000 in South Korea.
What I know only in data is the number of injured workers, which is about 108,379.
Then, given the situation, how should I calculate the death rate next?
I calculated the death variable in Stata as follows:
The death variable would be 1 if the worker died while working.
The death variable would be 0 if the worker did not die while working.
. tab death
Thank you for your help in advance.
Jun
I'm interested in the Serious Accidents Punishment Act's impact on industrial accidents in South Korea.
However, I had a problem calculating the death rate for the given data.
My data does not have the total number of workers, which is about 19,000,000 in South Korea.
What I know only in data is the number of injured workers, which is about 108,379.
Then, given the situation, how should I calculate the death rate next?
I calculated the death variable in Stata as follows:
The death variable would be 1 if the worker died while working.
The death variable would be 0 if the worker did not die while working.
. tab death
Code:
death | Freq. Percent Cum. ------------+----------------------------------- 0 | 106,317 98.10 98.10 1 | 2,062 1.90 100.00 ------------+----------------------------------- Total | 108,379 100.00 . save "/Users/mac/Desktop/acc/2020.dta", replace file /Users/mac/Desktop/acc/2020.dta saved
Thank you for your help in advance.
Jun
Comment