Package 'ISCO08ConveRsions'

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

Help Index


ISCO-08 to ISCO-88

Description

This function takes an ISCO-08 code and assigns its corresponding ISCO-88 code.

Usage

isco08toisco88(isco08)

Arguments

isco08

ISCO-08 code, given as a string with four digits

Details

Conversions follow the SPSS syntax modules of Harry Ganzeboom.

Value

String value of ISCO-88 code

Author(s)

Nicole Schwitter

References

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>.

Examples

## Assigning ISCO-88 code of ISCO-08 code "1000" to variable isco88 ("1000")
isco88 <- isco08toisco88("1000")

isco08toisei08

Description

This function takes an ISCO-08 code and assigns its corresponding ISEI-08 score.

Usage

isco08toisei08(isco08)

Arguments

isco08

ISCO-08 code, given as string with four digits

Details

Conversions follow the SPSS syntax modules of Harry Ganzeboom.

Value

Floating point value of corresponding ISEI-08 score

Author(s)

Nicole Schwitter

References

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>.

Examples

## Assigning ISEI-08 score of ISCO-08 code "1000" to variable isei08 (65.12)
isei08 <- isco08toisei08("1000")

isco08toisei08_2

Description

This function takes an ISCO-08 code and assigns its corresponding ISEI-08 score.

Usage

isco08toisei08_2(isco08)

Arguments

isco08

ISCO-08 code, given as string with four digits

Details

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.

Value

Integer value of corresponding ISEI-08 score

Author(s)

Nicole Schwitter

References

<http://www.harryganzeboom.nl/isco08/isco08_with_isei.pdf>

Examples

## Assigning ISEI-08 score of ISCO-08 code "1000" to variable isei08_2 (62)
isei08_2 <- isco08toisei08_2("1000")

isco08tojobtitle

Description

This function takes an ISCO-08 code and assigns its corresponding job title.

Usage

isco08tojobtitle(isco08)

Arguments

isco08

ISCO-08 code, given as string with four digits

Details

Conversions follow the overview table of Harry Ganzeboom.

Value

String value of corresponding job title or name of ISCO (sub-)group

Author(s)

Nicole Schwitter

References

<http://www.harryganzeboom.nl/isco08/isco08_with_isei.pdf>

Examples

## Assigning job title of ISCO-08 code "1000" to variable job (Managers)
job <- isco08tojobtitle("1000")

isco08tosiops08

Description

This function takes an ISCO-08 code and assigns its corresponding SIOPS-08 score.

Usage

isco08tosiops08(isco08)

Arguments

isco08

ISCO-08 code, given as string with four digits

Details

Conversions follow the SPSS syntax modules of Harry Ganzeboom.

Value

Floating point value of corresponding SIOPS-08 score

Author(s)

Nicole Schwitter

References

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>.

Examples

## Assigning SIOPS-08 score of ISCO-08 code "1000" to variable siops08 (48.87)
siops08 <- isco08tosiops08("1000")