Read-only mirror of https://github.com/StatistikStadtZuerich/STATENT — Stadt Zürich. Issues & pull requests at the source.
  • R 88.5%
  • JavaScript 11.5%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Aline Laura Metzler (sszmea) eaff4751cf Merge branch 'new-r-version' into 'main'
update R and packages, change download to new shinycssstyle req

See merge request OE-7035/ssz-da/produkte-methoden-gefaesse/gefaesse/applikationen/statent-tool!16
2026-04-23 09:01:17 +00:00
data-raw create package data 2024-08-27 17:08:09 +02:00
dev clean renv delete covrpage from dev 2024-08-28 16:36:17 +02:00
inst new class, hide variables in Mobile version 2026-04-22 16:09:33 +02:00
man run devtools::document, fix devtools::check 2026-04-23 10:36:46 +02:00
R new class, hide variables in Mobile version 2026-04-22 16:09:33 +02:00
renv update R and packages, change download to new shinycssstyle req 2026-03-17 16:03:55 +01:00
tests new 2023 data 2025-08-28 09:49:51 +02:00
.gitignore Initial golem setup 2024-08-06 10:31:30 +02:00
.gitlab-ci.yml refer to latest pipeline template 2026-04-23 10:41:40 +02:00
.Rbuildignore change to MIT license 2026-04-22 16:13:20 +02:00
.Rprofile Renv initialization 2024-08-06 10:39:36 +02:00
app.R setup funktionen und app file 2024-08-06 10:50:16 +02:00
DESCRIPTION run devtools::document, fix devtools::check 2026-04-23 10:36:46 +02:00
LICENSE change to MIT license 2026-04-22 16:13:20 +02:00
LICENSE.md change to MIT license 2026-04-22 16:13:20 +02:00
NAMESPACE setup downloads module 2024-08-13 11:56:32 +02:00
README.md readme incl. archi 2024-08-28 16:19:30 +02:00
renv.lock new zuericssstyle, correct icons and correct styling 2026-04-22 14:54:48 +02:00
statent-tool.Rproj Initial golem setup 2024-08-06 10:31:30 +02:00

STATENT Tool

Shiny app for STATENT-Data.

Shiny app for STATENT Tool, created as a golem app.

The STATENT application on the Website of Statistik Stadt Zürich shows the count of companies, employees (male & female) and full-time equivalents (male & female) in Zurich since 2011. It can be selected to display the results by area, sector, company size and/or legal form.

The data is obtained from the Open Data portal of the city of Zurich and is available here.

Architecture

flowchart LR;
  f1[F1 select area]:::filter --> button[button start]:::button
  f2[F2 select sector]:::filter --> button
  f3[F3 select size]:::filter --> button
  f4[F3 select legal]:::filter --> button
  button --> output1[(filtered data = \nF1 + F2 + F3 + F4)]:::data
  output1 --> results1[[Resultat Abfrage]]:::result
  results1 --> results2[["Resultat Abfrage \n(Result)"]]:::result
  results1 --> downloads{Downloads}:::download
  
  classDef filter fill:#ffff2f,stroke:#ffff2f;
  classDef button fill:#695eff,stroke:#695eff;
  classDef data fill:#edade6,stroke:#acb0b0;
  classDef result fill:#59e6f0,stroke:#acb0b0;
  classDef download fill:#43cc4c,stroke:#43cc4c;