21311LJ310 - Studienanfänger im 1. Hochschulsemester, Studienanfänger im 1. Fachsemester, Geschlecht, Jahre seit Erwerb der Hochschulzugangsberechtigung, Land, Studienjahr
Source:R/df_21311LJ310.R
      df_21311LJ310.RdThe table is sourced from the Landesdatenbank NRW from the series 2 Bildung, Sozialleistungen, Gesundheit, Rechtspflege (Education, Social Benefits, Health, Administration of Justice) -> 21 Bildung und Kultur (Education and Culture) -> 213 Hochschulen (Universities) -> 21311 Statistik der Studenten (Student Statistics).
Format
A tibble with 300 rows and 6 variables:
- BIL041
- Studienanfänger im 1. Hochschulsemester 
- BIL042
- Studienanfänger im 1. Fachsemester 
- GES
- Geschlecht 
- BILZUBJ
- Jahre seit Erwerb der Hochschulzugangsberechtigung 
- DLAND
- Land 
- SJAHR
- Studienjahr 
Source
The data in this package was obtained from the Landesdatenbank NRW (retrieved on 2024-05-05) using the code '21311LJ310'. The licence for data obtained from the Landesdatenbank NRW / Destatis is available here (see paragraph 2 section 2): Data licence Germany – attribution – Version 2.0. Paragraph 2 section 3 requires including a reference to the dataset (URI) if available. To the best of my knowledge, the Landesdatenbank NRW does not yet provide Uniform Resource Identifiers (URI) to identify their tables.
Paragraph 3 stipulates that 'changes, editing, new designs or other amendments must be marked as such in the source note'. Compared to the raw data, the following changes were made: Compared to the raw data, the following changes were made: (1) technical columns ending in "QUAL", "ERR", or "LOCK" were removed, and (2) variable and value labels were added to each table using the labelled package. The code for all these transformations is available through this package.
Details
The following summary is automatically generated using skimr::skim()
Table: Data summary
| Name | df_21311LJ310 | 
| Number of rows | 300 | 
| Number of columns | 6 | 
| _______________________ | |
| Column type frequency: | |
| character | 3 | 
| numeric | 3 | 
| ________________________ | |
| Group variables | None | 
Variable type: character
| skim_variable | n_missing | complete_rate | min | max | empty | n_unique | whitespace | 
| GES | 0 | 1 | 4 | 4 | 0 | 2 | 0 | 
| BILZUBJ | 0 | 1 | 6 | 6 | 0 | 5 | 0 | 
| DLAND | 0 | 1 | 2 | 2 | 0 | 1 | 0 | 
Variable type: numeric
| skim_variable | n_missing | complete_rate | mean | sd | p0 | p25 | p50 | p75 | p100 | hist | 
| SJAHR | 0 | 1 | 2007.50 | 8.67 | 1993 | 2000.00 | 2007.5 | 2015.00 | 2022 | ▇▇▇▇▇ | 
| BIL041 | 0 | 1 | 9167.15 | 7071.90 | 1954 | 3620.75 | 6923.0 | 12832.50 | 37093 | ▇▃▁▁▁ | 
| BIL042 | 0 | 1 | 14908.47 | 11729.78 | 2754 | 6105.00 | 12065.5 | 19078.75 | 54016 | ▇▅▂▁▁ | 
Examples
library(labelled)
df_21311LJ310
#> # A tibble: 300 × 6
#>    GES             BILZUBJ          DLAND                    SJAHR BIL041 BIL042
#>    <chr+lbl>       <chr+lbl>        <chr+lbl>                <dbl>  <dbl>  <dbl>
#>  1 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  1993   9760  10679
#>  2 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  1994  10435  11215
#>  3 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  1995  10003  10454
#>  4 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  1996   7933   8519
#>  5 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  1997   6651   6955
#>  6 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  1998   6650   7037
#>  7 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  1999   9157   9743
#>  8 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  2000   7047   7137
#>  9 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  2001   8498   8897
#> 10 GESM [männlich] HZBJR0 [0 Jahre] 05 [Nordrhein-Westfalen]  2002   9271   9755
#> # ℹ 290 more rows