DS4PS / cpp-526-fall-2019

Course material for CPP 526 Foundations of Data Science I
http://ds4ps.org/cpp-526-fall-2019
4 stars 4 forks source link

Reading Wk 2 #13

Closed sunaynagoel closed 5 years ago

sunaynagoel commented 5 years ago

This is in required reading for Week 2.

Group of Interest:

female age over 30 graduate degree Translated to R as a logical statement:

gender == "female" & age > 30 & grad.degree == FALSE

I was wondering if this statement should be gender == "female" & age > 30 & grad.degree == TRUE instead of the above given.

Any insights?

lecy commented 5 years ago

That's right. That is a typo. Thanks for catching - it has been updated.