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

Consulta sobre get_microdata #26

Closed
andresfortunato opened this issue Nov 30, 2020 · 2 comments
Closed

Consulta sobre get_microdata #26

andresfortunato opened this issue Nov 30, 2020 · 2 comments
Assignees

Comments

@andresfortunato
Copy link

Hola! Continuo una consulta que había subido acá.

Estoy haciendo esto:

base <- get_microdata(year = 2004:2019, trimester = 1:4, type='individual', vars =c('CODUSU','NRO_HOGAR','COMPONENTE','ANO4', 'TRIMESTRE','CH04','CH06', 'CH15', 'CH15_Cod', 'PONDERA','ESTADO','PP04A', 'NIVEL_ED','AGLOMERADO', 'PP04B_CAES'), destfile = "base_2004_2019.rds") %>% organize_labels(., type='individual')

Y me tira esto:

image

Al principio podía bajar las bases sin problema, después solo me dejaba bajar de 2011 a 2014 y ahora no me baja ninguna. Será que ya lo tengo en algún lado en mi compu y no me baja por eso? Intenté desinstalando el paquete y lo mismo.

Desde ya muchas gracias por este laburo que hicieron y están haciendo! Es una herramienta muy potente para la investigación en ciencias sociales de nuestro país!

@DiegoKoz
Copy link
Collaborator

DiegoKoz commented Dec 9, 2020

Me parece que el problema esta en:

  • CH15_Cod (que es CH15_COD)
  • PP04B_CAES

Este código por ejemplo funciona (eliminando ambas)

library(eph)
base <- get_microdata(year = 2019, trimester = 3:4,vars =c('CODUSU','NRO_HOGAR','COMPONENTE','ANO4',
                                                           'TRIMESTRE','CH04','CH06', 'CH15', 'PONDERA','ESTADO','PP04A',
                                                           'NIVEL_ED','AGLOMERADO'),
                      type='individual', destfile = "base_2019.rds") 

base


#>  A tibble: 2 x 5
#>   year trimester wave  type       microdata             
#>   <dbl>     <int> <lgl> <fct>      <list>                
#> 1  2019         3 NA    individual <tibble [57,229 × 13]>
#> 2  2019         4 NA    individual <tibble [58,519 × 13]>

Te conviene primero chequear que todas las variables que queres usar esten en todos los períodos que queres descargar.

@andresfortunato
Copy link
Author

Listo gracias!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants