Catálogo de Metadatos Estadísticos
Archivo Nacional de Datos y Metadatos Estadísticos
  • Registros Administrativos
  • Ambientales-Agropecuarias
  • Económicas
  • Sociodemográficas
  • Web INEC
  • Ingresar
    Ingresar
    Página principal / Catálogo Central de Datos / SOCDEMO / ECU-INEC-CGTPE-DIES-ENEMDU-2023-V1.3 / variable [F11]
SOCDEMO

Encuesta Nacional de Empleo, Desempleo y Subempleo - 2023

Ecuador, 2023
Obtener microdatos
ID de Referencia
ECU-INEC-CGTPE-DIES-ENEMDU-2023-v1.3
Productor(es)
Instituto Nacional de Estadística y Censos (INEC)
Colección(es)
ESTADISTICAS SOCIODEMOGRAFICAS
Metadatos
DDI / XML JSON
Creado el
Feb 04, 2026
Última modificación
Feb 04, 2026
Visitas a la página
7383
Descargas
1542
  • Descripción del estudio
  • Descripción de los datos
  • Descargas
  • Obtener microdatos
  • Archivo de Datos
  • enemdu_vivienda_hogar_2023_12
  • enemdu_persona_2023_12
  • enemdu_consumidor_2023_12

Ingreso Laboral (ingrl)

Archivo de datos: enemdu_persona_2023_12

Descripción general

Válido: 12098
Inválido: 16208
Tipo: Discreto
Decimales: 2
Inicio: 319
Fin: 326
Ancho: 8
Rango: 0 - 18500
Formato: Numérico

Preguntas e instrucciones

Categorías
Valor Categoría
-1 Gasta más de lo que gana
999999 No informa
Advertencia: estas cifras indican el número de casos encontrados en el archivo de datos. No se pueden interpretar como estadísticas resumidas de la población de interés.

Descripción

Definición
Ingreso provenientes del trabajo.

Imputación y derivación

Instrucciones del codificador
AGREGADO DEL INGRESO

*Se incrementa abr-20, tratamiento de los 9s.
IF (p63=999 OR p63=9999 OR p63=99999 or p63=9999999) p63=999999.
IF (p64b=999 OR p64b=9999 OR p64b=99999 or p64b=9999999) p64b=999999.
IF (p65=999 OR p65=9999 OR p65=99999 or p65=9999999) p65=999999.
IF (p66=999 OR p66=9999 OR p66=99999 or p66=9999999) p66=999999.
IF (p67=999 OR P67=9999 OR p67=99999 or p67=9999999) p67=999999.
IF (p68b=999 OR p68b=9999 OR p68b=99999 or p68b=9999999) p68b=999999.
IF (p69=999 OR p69=9999 OR p69=99999 or p69=9999999) p69=999999.
IF (p70b=999 OR p70b=9999 OR p70b=99999 or p70b=9999999) p70b=999999.
IF (p71b=999 OR p71b=9999 OR p71b=99999 or p71b=9999999) p71b=999999.
IF (p72b=999 OR p72b=9999 OR p72b=99999 or p72b=9999999) p72b=999999.
IF (p73b=999 OR p73b=9999 OR p73b=99999 or p73b=9999999) p73b=999999.
IF (p74b=999 OR p74b=9999 OR p74b=99999 or p74b=9999999) p74b=999999.
IF (p76=999 OR p76=9999 OR p76=99999 or p76=9999999) p76=999999.
exe.
******************************************************.
*Ingreso Primario.
compute ingr = 0.
if (p63<999999) ingr =(ingr + p63).
if (p64b<999999) ingr =(ingr + p64b).
if (p65<999999) ingr = (ingr - p65).
if (p66<999999) ingr =(ingr + p66).
if (p67<999999) ingr = (ingr + p67).
if (p68b<999999) ingr =(ingr + p68b).

DO IF (missing(p63) and missing(p64b) and missing(p65) and missing(p66) and missing(p67) and missing(p68b)).
RECODE
ingr (0=sysmis).
End if.
IF (p63=999999) ingr=999999.
IF (p66=999999) ingr=999999.
******************************************************.
*Ingreso Secundadario.
compute ingrls=0.
If (p69< 999999) ingrls=(ingrls+p69).
If (p70b< 999999) ingrls=(ingrls+p70b).

DO IF (missing(p69) and missing(p70b)).
RECODE
ingrls (0=sysmis).
End if.

Do if (p69=999999 and p70b=999999).
recode ingrls(0=999999).
end if.

Do if (missing(p69) and p70b=999999).
recode ingrls(0=999999).
end if.
*Se incrementa en nov-19, porque no se encuentra especificado el caso.
Do if (p69=999999 and missing(p70b)).
recode ingrls(0=sysmis).
end if.

*************************************************.
***CALCULO DEL INGRESO LABORAL***.
*************************************************.
compute INGRL=0.
if (ingr<0 and ingrls<999999) ingrl =(ingrl + ingrls).
execute.
if (((ingr<999999 and ingr>0) or ingr=0) and (ingrls<999999)) ingrl =(ingrl+ingr + ingrls).
execute.
if (missing(ingr) and (ingrls<999999)) ingrl=(ingrl+ingrls).
if (missing(ingrls) and (ingr<999999 and ingr>0)) ingrl=(ingrl+ingr).
if (ingr<0 and missing(ingrls)) ingrl=-1.
if (ingr=999999 and missing(ingrls)) ingrl=999999.
if (ingr=999999 and (ingrls<999999 and ingrls>=0)) ingrl=999999.
*Se incrementa en dic-19, porque no se encuentra especificado el caso.
if (ingr=999999 and ingrls=999999) ingrl=999999.
*Se incrementa en nov-2019, porque no se encuentra especificado el caso.
if (missing(ingr) and ingrls=999999) ingrl=999999.
if ((ingrls=999999) and (ingr<999999 and ingr>0)) ingrl=(ingrl+ingr).
execute.


Do if (missing(ingr) and missing(ingrls)).
recode ingrl(0=sysmis).
end if.

var label
ingrl 'Ingreso Laboral'
ingr 'Ingreso Trabajo Principal'
ingrls 'Ingreso Ocupacion Secundario'.

value label ingrl
-1 'Gasta mas de lo que gana'
999999 'No informa'.

Otros

Notas
Variable creada
Volver al catálogo
Catálogo de Metadatos Estadísticos

© Catálogo de Metadatos Estadísticos, All Rights Reserved.