od_list() returns a data.frame  containing all datasets published at
data.statistik.gv.at
Usage
od_list(unique = TRUE, server = c("ext", "red"))Arguments
- unique
- some datasets are pulbished under multiple groups. They will only be listed once with the first group they appear in unless this parameter is set to - FALSE.
- server
- the open data server to use. Either - extfor the external server (the default) or- redfor the editing server. The editing server is only accessible for employees of Statistics Austria
Value
a data.frame with two columns
- "category": Grouping under which a dataset is listed
- "id": Name of the dataset which can later be used in- od_table()
- "label": Description of the dataset
Examples
df <- od_list()
df
#> # A data frame: 328 × 3
#>    category    id                                         label       
#>    <chr>       <chr>                                      <chr>       
#>  1 Arbeit      OGD_konjunkturmonitor_KonMon_1             Konjunkturm…
#>  2 Arbeit      OGD_aest_erv_statw_haupt_ERV_STATWECHSEL_1 Registerbas…
#>  3 Arbeit      OGD_veste309_Veste309_1                    Verdienstst…
#>  4 Arbeit      OGD_veste307_Veste307_1                    Verdienstst…
#>  5 Arbeit      OGD_veste305_Veste305_1                    Verdienstst…
#>  6 Arbeit      OGD_veste303_Veste203_1                    Verdienstst…
#>  7 Arbeit      OGD_veste301_Veste301_1                    Verdienstst…
#>  8 Arbeit      OGD_aeapp_biber_abschl_ext_BIBER_ABSCHL_1  BibEr Monit…
#>  9 Bevölkerung OGD_rate_kalwobez_GEST_KALWOCHE_STR_BZ_100 Altersstand…
#> 10 Bevölkerung OGD_rate_kalwo_GEST_KALWOCHE_STR_100       Altersstand…
#> # … with 318 more rows
subset(df, category == "Bildung und Forschung")
#> # A data frame: 43 × 3
#>    category              id                           label           
#>  * <chr>                 <chr>                        <chr>           
#>  1 Bildung und Forschung OGD_lehrer_LEHR_1            Lehrpersonen    
#>  2 Bildung und Forschung OGD_unistud5_ext_UNI_STUD5_1 Studierende in …
#>  3 Bildung und Forschung OGD_unistud4_ext_UNI_STUD4_2 Studierende an …
#>  4 Bildung und Forschung OGD_schuel_SCHUELER_1        Schulstatistik;…
#>  5 Bildung und Forschung OGD_f1903fue_FUE_B1903FUE_1  Beschäftigte in…
#>  6 Bildung und Forschung OGD_f1906fue_FUE_B1906FUE_1  FuE-Beschäftigt…
#>  7 Bildung und Forschung OGD_1905fue_FUE_B1905FUE_1   FuE- Beschäftig…
#>  8 Bildung und Forschung OGD_f1904fue_FUE_B1904FUE_1  Ausgaben für F&…
#>  9 Bildung und Forschung OGD_klassen_KLASSEN_1        Schulstatistik;…
#> 10 Bildung und Forschung OGD_f1901_F1901_1            Ausgaben und Fi…
#> # … with 33 more rows
# use an id to load a dataset
od_table("OGD_fhsstud_ext_FHS_S_1")
#> Studies at universities of applied sciences
#> 
#> Dataset: OGD_fhsstud_ext_FHS_S_1 (data.statistik.gv.at)
#> Measures: Ordinary Studies, Courses of studies (Lehrgang), Newly
#>   enrolled ordinary studies, Newly enrolled courses of studies
#>   (Lehrgang)
#> Fields: Semester <38>
#> 
#> Request: [2022-12-20 11:34:40]
#> STATcubeR: 0.5.0.1
