ex-US response:
- 5 Nigreria
Response farms will many repeated lat-long positions with varrying declared state of residence
Gender | Freq | % | target |
---|---|---|---|
Woman | 2028 | 59.0 | 53-54 |
Man | 1378 | 40.1 | 46-47 |
Other | 29 | 0.8 | < 5 |
When creating diagnostic variables, we focused on a few qualities of
the data.
- The length of free-text responses.
- Inconsistent or impossible combinations of responses.
- Location provided by latitude and longitude Some suspicious responses
we observed and can consider when flagging but cannot serve as
diagnostic of fraudulent data: C-suite jobs
biggest_influence prompt: write a response to this survey question: Overall, what would you say was the biggest influence on your initial career choice?
doogie howser check
fix work experience for users that entered calendar
year
mutate(work_exp_fix = case_when(work_exp>1000 ~ 2024-work_exp,
work_exp<1000 ~ work_exp) )
fix job tenure for users that entered calendar year
mutate(job_tenure_fix = case_when(job_tenure == 99 ~ 0, job_tenure >=
66 ~ NA, job_tenure < 66 ~ job_tenure) )
total work_exp must be >= job_tenure
work_exp: How many years of post-college work experience do you have?
Negative values are impossible
Minimum should be around 20 years