Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

How can I make a table which presents the results of these experimental models with robust standard errors # What was the callback rate for

How can I make a table which presents the results of these experimental models with robust standard errors

 # What was the callback rate for whites? Names_w <- Names %>% filter(black==0) Names_w %>% group_by(black,call_back) %>% summarise(N=n(),fraction=N/nrow(.)) Names_b <- Names %>% filter(black==1) Names_b %>% group_by(black,call_back) %>% summarise(N=n(),fraction=N/nrow(.)) t.test(Names_w$call_back,Names_b$call_back) #Is the African American/white callback rate differential different for men than for women?{use interaction} Names_w %>% group_by(black,female==0) %>% summarise_at(vars(call_back),funs("mean","sd")) #What is the difference in callback rates for high-quality versus low-quality resumes? resume_lq <- Names %>% filter(high==0) resume_hq <- Names %>% filter(high==1) t.test(resume_lq$call_back,resume_hq$call_back) #What is the high-quality/low-quality difference for white applicants? resume_w <- Names %>% filter(black==0) resume_lq <- resume_w %>% filter(high==0) resume_hq <- resume_w %>% filter(high==1) t.test(resume_lq$call_back,resume_hq$call_back) #For African American applicants? resume_b <- Names %>% filter(black==1) resume_lb <- resume_b %>% filter(high==0) resume_hb <- resume_b %>% filter(high==1) t.test(resume_lb$call_back,resume_b$call_back)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Mathematics For Liberal Arts Majors

Authors: Christopher Thomas

1st Edition

0071544305, 9780071544306

More Books

Students also viewed these Mathematics questions

Question

Who is your target market?

Answered: 1 week ago

Question

useful in this situation? Why or why not?

Answered: 1 week ago

Question

Self-confidence

Answered: 1 week ago

Question

The number of people commenting on the statement

Answered: 1 week ago