Title: | Converts ISCO-08 to Job Prestige Scores, ISCO-88 and Job Name |
---|---|
Description: | Implementation of functions to assign corresponding common job prestige scores (SIOPS, ISEI), the official job or group title and the ISCO-88 code to given ISCO-08 codes. ISCO-08 is the latest version of the International Standard Classification of Occupations which is used to organise information on labour and jobs. |
Authors: | Nicole Schwitter [aut, cre, orcid=0000-0002-3837-680X] |
Maintainer: | Nicole Schwitter <[email protected]> |
License: | GPL (>= 2) |
Version: | 0.2.0 |
Built: | 2025-03-08 03:14:34 UTC |
Source: | https://github.com/cran/ISCO08ConveRsions |
This function takes an ISCO-08 code and assigns its corresponding ISCO-88 code.
isco08toisco88(isco08)
isco08toisco88(isco08)
isco08 |
ISCO-08 code, given as a string with four digits |
Conversions follow the SPSS syntax modules of Harry Ganzeboom.
String value of ISCO-88 code
Nicole Schwitter
Ganzeboom, Harry B.G.; Treiman, Donald J., "International Stratification and Mobility File: Conversion Tools." Amsterdam: Department of Social Research Methodology, <http://www.harryganzeboom.nl/ismf/index.htm>.
## Assigning ISCO-88 code of ISCO-08 code "1000" to variable isco88 ("1000") isco88 <- isco08toisco88("1000")
## Assigning ISCO-88 code of ISCO-08 code "1000" to variable isco88 ("1000") isco88 <- isco08toisco88("1000")
This function takes an ISCO-08 code and assigns its corresponding ISEI-08 score.
isco08toisei08(isco08)
isco08toisei08(isco08)
isco08 |
ISCO-08 code, given as string with four digits |
Conversions follow the SPSS syntax modules of Harry Ganzeboom.
Floating point value of corresponding ISEI-08 score
Nicole Schwitter
Ganzeboom, Harry B.G.; Treiman, Donald J., "International Stratification and Mobility File: Conversion Tools." Amsterdam: Department of Social Research Methodology, <http://www.harryganzeboom.nl/ismf/index.htm>.
## Assigning ISEI-08 score of ISCO-08 code "1000" to variable isei08 (65.12) isei08 <- isco08toisei08("1000")
## Assigning ISEI-08 score of ISCO-08 code "1000" to variable isei08 (65.12) isei08 <- isco08toisei08("1000")
This function takes an ISCO-08 code and assigns its corresponding ISEI-08 score.
isco08toisei08_2(isco08)
isco08toisei08_2(isco08)
isco08 |
ISCO-08 code, given as string with four digits |
Conversions follow the overview table of Harry Ganzeboom. As the last revision date of this table is earlier than the revision date of the SPSS syntax modules, the function 'isco08toisei08()' is preferable.
Integer value of corresponding ISEI-08 score
Nicole Schwitter
<http://www.harryganzeboom.nl/isco08/isco08_with_isei.pdf>
## Assigning ISEI-08 score of ISCO-08 code "1000" to variable isei08_2 (62) isei08_2 <- isco08toisei08_2("1000")
## Assigning ISEI-08 score of ISCO-08 code "1000" to variable isei08_2 (62) isei08_2 <- isco08toisei08_2("1000")
This function takes an ISCO-08 code and assigns its corresponding job title.
isco08tojobtitle(isco08)
isco08tojobtitle(isco08)
isco08 |
ISCO-08 code, given as string with four digits |
Conversions follow the overview table of Harry Ganzeboom.
String value of corresponding job title or name of ISCO (sub-)group
Nicole Schwitter
<http://www.harryganzeboom.nl/isco08/isco08_with_isei.pdf>
## Assigning job title of ISCO-08 code "1000" to variable job (Managers) job <- isco08tojobtitle("1000")
## Assigning job title of ISCO-08 code "1000" to variable job (Managers) job <- isco08tojobtitle("1000")
This function takes an ISCO-08 code and assigns its corresponding SIOPS-08 score.
isco08tosiops08(isco08)
isco08tosiops08(isco08)
isco08 |
ISCO-08 code, given as string with four digits |
Conversions follow the SPSS syntax modules of Harry Ganzeboom.
Floating point value of corresponding SIOPS-08 score
Nicole Schwitter
Ganzeboom, Harry B.G.; Treiman, Donald J., "International Stratification and Mobility File: Conversion Tools." Amsterdam: Department of Social Research Methodology, <http://www.harryganzeboom.nl/ismf/index.htm>.
## Assigning SIOPS-08 score of ISCO-08 code "1000" to variable siops08 (48.87) siops08 <- isco08tosiops08("1000")
## Assigning SIOPS-08 score of ISCO-08 code "1000" to variable siops08 (48.87) siops08 <- isco08tosiops08("1000")