forked from runapp-aus/strayr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
<!-- README.md is generated from README.Rmd. Please edit that file --> | ||
|
||
# abscorr | ||
# abscorr <img src="man/figures/logo.png" align="right" style="height:150px"/> | ||
|
||
<!-- badges: start --> | ||
|
||
|
@@ -23,20 +23,19 @@ contribute to this package. | |
|
||
Current structures stored in `abscorr` are: | ||
|
||
- `anzsco`: occupation levels of the [Australian and New Zealand | ||
- `anzsco`: occupation levels of the [Australian and New Zealand | ||
Standard Classification of Occupations (ANZSCO), First Edition, | ||
Revision 1, 2009. Cat. | ||
1220.0](https://www.abs.gov.au/AUSSTATS/[email protected]/DetailsPage/1220.0First%20Edition,%20Revision%201?OpenDocument). | ||
- `anzsic`: industry levels of the [Australian and New Zealand | ||
Revision 1, 2009. | ||
Cat. 1220.0](https://www.abs.gov.au/AUSSTATS/[email protected]/DetailsPage/1220.0First%20Edition,%20Revision%201?OpenDocument). | ||
- `anzsic`: industry levels of the [Australian and New Zealand | ||
Standard Industrial Classification (ANZSIC), 2006 (Revision 1.0). | ||
Cat. | ||
1292.0](https://www.abs.gov.au/ausstats/[email protected]/0/20C5B5A4F46DF95BCA25711F00146D75?opendocument). | ||
- `asced_foe`: field of education levels of the [Australian Standard | ||
Classification of Education (ASCED), 2001. Cat. | ||
1272.0](https://www.abs.gov.au/ausstats/[email protected]/mf/1272.0). | ||
- `asced_qual`: qualification levels of the [Australian Standard | ||
Classification of Education (ASCED), 2001. Cat. | ||
1272.0](https://www.abs.gov.au/ausstats/[email protected]/mf/1272.0). | ||
Cat. 1292.0](https://www.abs.gov.au/ausstats/[email protected]/0/20C5B5A4F46DF95BCA25711F00146D75?opendocument). | ||
- `asced_foe`: field of education levels of the [Australian Standard | ||
Classification of Education (ASCED), 2001. | ||
Cat. 1272.0](https://www.abs.gov.au/ausstats/[email protected]/mf/1272.0). | ||
- `asced_qual`: qualification levels of the [Australian Standard | ||
Classification of Education (ASCED), 2001. | ||
Cat. 1272.0](https://www.abs.gov.au/ausstats/[email protected]/mf/1272.0). | ||
|
||
## Installation | ||
|
||
|
@@ -52,30 +51,26 @@ This is a basic example which shows you how to solve a common problem: | |
|
||
``` r | ||
library(abscorr) | ||
#> Loading required package: absmapsdata | ||
library(dplyr, warn.conflicts = FALSE) | ||
|
||
glimpse(anzsco) | ||
#> Rows: 1,180 | ||
#> Columns: 16 | ||
#> Columns: 11 | ||
#> $ anzsco1_code <chr> "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "… | ||
#> $ anzsco1 <chr> "Managers", "Managers", "Managers", "Managers", "Manager… | ||
#> $ anzsco1_f <fct> Managers, Managers, Managers, Managers, Managers, Manage… | ||
#> $ anzsco2_code <chr> "10", "11", "11", "11", "11", "11", "11", "11", "11", "1… | ||
#> $ anzsco2 <chr> "Managers, nfd", "Chief Executives, General Managers and… | ||
#> $ anzsco2_f <fct> "Managers, nfd", "Chief Executives, General Managers and… | ||
#> $ anzsco3_code <chr> "100", "110", "111", "111", "111", "111", "111", "111", … | ||
#> $ anzsco3 <chr> "Managers, nfd", "Chief Executives, General Managers and… | ||
#> $ anzsco3_f <fct> "Managers, nfd", "Chief Executives, General Managers and… | ||
#> $ anzsco4_code <chr> "1000", "1100", "1110", "1111", "1112", "1112", "1113", … | ||
#> $ anzsco4 <chr> "Managers, nfd", "Chief Executives, General Managers and… | ||
#> $ anzsco4_f <fct> "Managers, nfd", "Chief Executives, General Managers and… | ||
#> $ anzsco6_code <chr> "100000", "110000", "111000", "111111", "111211", "11121… | ||
#> $ anzsco6 <chr> "Managers, nfd", "Chief Executives, General Managers and… | ||
#> $ anzsco6_f <fct> "Managers, nfd", "Chief Executives, General Managers and… | ||
#> $ skill_level <fct> NA, NA, NA, 1, 1, 1, 1, 1, 1, NA, NA, 1, 1, 1, 1, 1, 1, … | ||
#> $ skill_level <chr> NA, NA, NA, "1", "1", "1", "1", "1", "1", NA, NA, "1", "… | ||
glimpse(anzsic) | ||
#> Rows: 506 | ||
#> Columns: 12 | ||
#> Columns: 8 | ||
#> $ anzsic_division_code <chr> "A", "A", "A", "A", "A", "A", "A", "A", "A", … | ||
#> $ anzsic_division <chr> "Agriculture, Forestry and Fishing", "Agricul… | ||
#> $ anzsic_subdivision_code <chr> "1", "1", "1", "1", "1", "1", "1", "1", "1", … | ||
|
@@ -84,32 +79,22 @@ glimpse(anzsic) | |
#> $ anzsic_group <chr> "Nursery and Floriculture Production", "Nurse… | ||
#> $ anzsic_class_code <chr> "111", "112", "113", "114", "115", "121", "12… | ||
#> $ anzsic_class <chr> "Nursery Production (Under Cover)", "Nursery … | ||
#> $ anzsic_division_f <fct> "Agriculture, Forestry and Fishing", "Agricul… | ||
#> $ anzsic_subdivision_f <fct> Agriculture, Agriculture, Agriculture, Agricu… | ||
#> $ anzsic_group_f <fct> "Nursery and Floriculture Production", "Nurse… | ||
#> $ anzsic_class_f <fct> Nursery Production (Under Cover), Nursery Pro… | ||
glimpse(asced_foe) | ||
#> Rows: 439 | ||
#> Columns: 9 | ||
#> Columns: 6 | ||
#> $ foe2_code <chr> "01", "01", "01", "01", "01", "01", "01", "01", "01", "01",… | ||
#> $ foe2 <chr> "Natural and Physical Sciences", "Natural and Physical Scie… | ||
#> $ foe2_f <fct> Natural and Physical Sciences, Natural and Physical Science… | ||
#> $ foe4_code <chr> "0100", "0101", "0101", "0101", "0101", "0103", "0103", "01… | ||
#> $ foe4 <chr> "Natural and Physical Sciences, nfd", "Mathematical Science… | ||
#> $ foe4_f <fct> "Natural and Physical Sciences, nfd", "Mathematical Science… | ||
#> $ foe6_code <chr> "010000", "010100", "010101", "010103", "010199", "010300",… | ||
#> $ foe6 <chr> "Natural and Physical Sciences, nfd", "Mathematical Science… | ||
#> $ foe6_f <fct> "Natural and Physical Sciences, nfd", "Mathematical Science… | ||
glimpse(asced_qual) | ||
#> Rows: 64 | ||
#> Columns: 9 | ||
#> Columns: 6 | ||
#> $ qual1_code <chr> "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "2"… | ||
#> $ qual1 <chr> "Postgraduate Degree Level", "Postgraduate Degree Level", … | ||
#> $ qual1_f <fct> Postgraduate Degree Level, Postgraduate Degree Level, Post… | ||
#> $ qual2_code <chr> "11", "11", "11", "11", "11", "11", "12", "12", "12", "12"… | ||
#> $ qual2 <chr> "Doctoral Degree Level", "Doctoral Degree Level", "Doctora… | ||
#> $ qual2_f <fct> Doctoral Degree Level, Doctoral Degree Level, Doctoral Deg… | ||
#> $ qual3_code <chr> "111", "112", "113", "114", "115", "116", "121", "122", "1… | ||
#> $ qual3 <chr> "Higher Doctorate", "Doctorate by Research", "Doctorate by… | ||
#> $ qual3_f <fct> Higher Doctorate, Doctorate by Research, Doctorate by Cour… | ||
``` |