We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get_evbf()
For example:
df <- within(iycfData, { evbf <- get_evbf(q4 = child_bf, age = calc_age_months) }) table(df$evbf)
which produces:
0 1 8 145
when checking manually:
with(df, table(calc_age_months < 24, child_bf))
child_bf 0 1 999 FALSE 0 0 0 TRUE 7 145 1
get_evbf() seems to be counting the one record that reports a 999 value for child_bf
999
child_bf
The text was updated successfully, but these errors were encountered:
ernestguevarra
nicholustintzaw
No branches or pull requests
For example:
which produces:
when checking manually:
which produces:
get_evbf()
seems to be counting the one record that reports a999
value forchild_bf
The text was updated successfully, but these errors were encountered: