library(hisco)
library(knitr)
library(dplyr)

From HSN standardized, HISCO-coded and classified occupational titles, release 2013.01.

HISCLASS

data(hisclass)
kable(hisclass)

HISCLASS 5

data(hisclass_5)
kable(hisclass_5)

SOCPO

data(socpo)
kable(socpo)

Variables

This codes are used to further specify classification when the HISCO code is insufficient.

Status

path <- system.file("extdata", "status.csv", package = "hisco")
if (file.exists(path)){
  d <- read.csv(path)
  kable(d[ ,c(2,4,3)])
}

Relation

path <- system.file("extdata", "relation.csv", package = "hisco")
if (file.exists(path)){
  d <- read.csv(path)
  kable(d[ ,c(2,4,3)])
}


cedarfoundation/hisco documentation built on May 13, 2019, 2:51 p.m.