Skip to content
New issue

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

missing birth info? #45

Open
kachergis opened this issue Sep 22, 2024 · 0 comments
Open

missing birth info? #45

kachergis opened this issue Sep 22, 2024 · 0 comments

Comments

@kachergis
Copy link
Member

For American English, calling get_administration_data() with include_birth_info=T does not return any non-NA values for any of the relevant variables...don't some of these data have non-NA birth information? (e.g. the norms data, minimally?) Are the datasets not read in correctly, or is there an issue in get_administration_data()? Here's an example:

require(wordbankr)
ws_dat <- get_administration_data(language="English (American)", 
                                  form="WS", include_demographic_info = T, 
                                  include_birth_info = T,
                                  include_language_exposure = T)
wg_dat <- get_administration_data(language="English (American)", 
                                  form="WG", include_demographic_info = T,
                                  include_birth_info = T,
                                  include_language_exposure = T)
# include_study_internal_id = T

table(wg_dat$born_early_or_late) # < table of extent 0 >
table(wg_dat$gestational_age) # < table of extent 0 >
table(wg_dat$birth_weight) # < table of extent 0 >
table(wg_dat$zygosity) # < table of extent 0 >

table(ws_dat$born_early_or_late) # < table of extent 0 >
table(ws_dat$gestational_age) # < table of extent 0 >
table(ws_dat$birth_weight) # < table of extent 0 >
table(ws_dat$zygosity) # < table of extent 0 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant