HI All,
I want to assess if there is racial discrimination in job applicants using paired auditors identical on all relevant criteria, differing only in race, of course. However, this kind of study design is very new to me and was recently tasked with doing the analysis from colleagues. I was hoping someone could direct me to the best strategy.
Below is the data. The first column is an anonymized job ID. Then I have a column for two pairs so there are a total of two black auditors and two white auditors. 0=no discrimination. 1 and 2 = certain types of discrimination the team coded for.
I know that t tests are a simple way of gauging differences between groups (in my case, black and white). I wondered if there are special considerations to implement since I have pairs within the same group or other types of analysis I should be aware of with this kind of data setup. Thank you in advance.
I want to assess if there is racial discrimination in job applicants using paired auditors identical on all relevant criteria, differing only in race, of course. However, this kind of study design is very new to me and was recently tasked with doing the analysis from colleagues. I was hoping someone could direct me to the best strategy.
Below is the data. The first column is an anonymized job ID. Then I have a column for two pairs so there are a total of two black auditors and two white auditors. 0=no discrimination. 1 and 2 = certain types of discrimination the team coded for.
I know that t tests are a simple way of gauging differences between groups (in my case, black and white). I wondered if there are special considerations to implement since I have pairs within the same group or other types of analysis I should be aware of with this kind of data setup. Thank you in advance.
Code:
* Example generated by -dataex-. For more info, type help dataex clear input byte(job black1 white1 black2 white2) 1 0 0 1 0 2 1 0 1 0 3 0 0 2 0 4 0 0 0 0 5 0 0 1 0 6 0 0 0 0 7 0 0 0 0 8 0 0 0 0 9 0 0 0 0 10 0 0 0 0 11 0 0 0 0 12 . . . . 13 0 0 0 0 14 0 0 0 0 15 0 0 0 0 16 0 0 0 0 17 0 0 0 0 18 0 0 0 0 19 0 0 0 0 20 0 0 0 0 21 2 0 0 0 22 . . . . 23 0 0 0 0 24 0 0 0 0 25 1 0 0 0 26 0 0 0 0 27 0 0 0 0 28 0 0 0 0 29 0 0 0 0 30 0 0 0 0 31 0 0 0 0 32 0 0 0 0 end
Comment