Initial commit

This commit is contained in:
Jonas Karneboge 2026-09-22 18:35:43 +02:00
commit 3cba772836
1341 changed files with 532924 additions and 0 deletions

BIN
DSF/.RData Normal file

Binary file not shown.

1
DSF/.Rprofile Normal file
View file

@ -0,0 +1 @@
source("renv/activate.R")

13
DSF/DSF.Rproj Normal file
View file

@ -0,0 +1,13 @@
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX

BIN
DSF/Zeichenfläche1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

1622
DSF/app.R Normal file

File diff suppressed because it is too large Load diff

3039
DSF/renv.lock Normal file

File diff suppressed because it is too large Load diff

16
DSF/setup_renv.R Normal file
View file

@ -0,0 +1,16 @@
# Einmalig ausfuehren, bevor die App zum ersten Mal gestartet wird.
# Initialisiert renv und installiert alle benoetigten Pakete.
#
# DBI und RSQLite werden vom gesourcten Pseudonym-Skript benoetigt,
# nicht direkt von der App selbst.
# jsonlite parst paingrid_data (Koerperschema-Markierungen), png liest das
# Koerperschema-Hintergrundbild fuer den Word-Export ein.
renv::init()
pkgs <- c("shiny", "dplyr", "ggplot2", "haven", "officer", "DBI", "RSQLite", "jsonlite", "png")
install.packages(pkgs)
renv::snapshot()
message("Setup abgeschlossen. App starten mit: shiny::runApp()")

BIN
DSF/www/koerperschema.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB