-
Notifications
You must be signed in to change notification settings - Fork 2
/
523@fachstelle-ogd-kanton-zuerich.Rmd
79 lines (49 loc) · 2.46 KB
/
523@fachstelle-ogd-kanton-zuerich.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
title: "Open Government Data, provided by Canton Zurich"
date: "2025-01-07"
output: html_document
---
## Dataset: Statistik der Informationszugangsgesuche nach IDG des Kantons Zürich ab 2013
Anzahl und Erledigungsart der schriftlich eingereichten Informationszugangsgesuche in der kantonalen Verwaltung. Nicht enthalten sind die – praxisgemäss viel zahlreicheren – sogenannten formlosen Gesuche. Darunter fallen insbesondere die telefonischen oder per Mail eingereichten Anfragen.
[Direct data shop link for dataset](https://www.zh.ch/de/politik-staat/statistik-daten/datenkatalog.html#/datasets/523@fachstelle-ogd-kanton-zuerich)
Auto generated R starter code for data set 523@fachstelle-ogd-kanton-zuerich.
## Metadata
- **Issued** `2019-12-05T09:44:00`
- **Modified** `2024-10-11T10:41:29`
- **Startdate** `2013-01-01`
- **Enddate** `2023-12-31`
- **Theme** `['http://publications.europa.eu/resource/authority/data-theme/GOVE', 'http://publications.europa.eu/resource/authority/data-theme/ECON']`
- **Keyword** `['kantonale_verwaltung', 'regierungsrat', 'ogd']`
- **Publisher** `['Fachstelle Open Government Data des Kantons Zürich']`
- **Landingpage** `https://www.zh.ch/de/politik-staat/kanton/kantonale-verwaltung/oeffentlichkeitsprinzip.html`
# Load packages
```{r}
library(tidyverse)
library(skimr)
```
# Load data
- The dataset has 1 distribution(s) in CSV format.
- All available CSV distributions are listed below and can be read into a tibble.
```{r}
# Distribution 0
# Ktzhdistid : 968
# Title : Statistik der Informationszugangsgesuche nach IDG des Kantons Zürich
# Description : Spalten: 'jahr'; 'organisationseinheit'; 'gesuche_haengig_jan' (am 1. Januar des Jahres); 'gesuche_total' (des gesamten Jahres); 'zugang_uneingeschraenkt_gewaehrt'; 'zugang_teilweise_gewaehrt'; 'zugang_vollstaendig_abgelehnt'; 'anderweitige_erledigung' (z.B. Rückzug, Gegenstandslosigkeit); 'gesuche_haengig_dez' (am 31. Dezember des Jahres).
# Issued : 2019-11-19T17:55:39
# Modified : 2024-10-11T10:14:37
df <- read_delim('https://www.web.statistik.zh.ch/ogd/daten/ressourcen/KTZH_00000523_00000968.csv')
```
# Analyze data
```{r}
glimpse(df)
str(df)
skim(df)
head(df)
tail(df)
```
# Continue your code here...
```{r}
```
------------------------------------------------------------------------
# Questions about the data?
Fachstelle Open Government Data des Kantons Zürich | info@open.zh.ch