Initial commit
This commit is contained in:
commit
3cba772836
1341 changed files with 532924 additions and 0 deletions
BIN
VDS32/.RData
Normal file
BIN
VDS32/.RData
Normal file
Binary file not shown.
1
VDS32/.Rprofile
Normal file
1
VDS32/.Rprofile
Normal file
|
|
@ -0,0 +1 @@
|
|||
source("renv/activate.R")
|
||||
13
VDS32/VDS32.Rproj
Normal file
13
VDS32/VDS32.Rproj
Normal 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
|
||||
1139
VDS32/app.R
Normal file
1139
VDS32/app.R
Normal file
File diff suppressed because it is too large
Load diff
2879
VDS32/renv.lock
Normal file
2879
VDS32/renv.lock
Normal file
File diff suppressed because it is too large
Load diff
17
VDS32/setup_renv.R
Normal file
17
VDS32/setup_renv.R
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Einmalig ausfuehren, bevor die App zum ersten Mal gestartet wird.
|
||||
# Initialisiert renv und installiert alle benoetigten Pakete.
|
||||
#
|
||||
# formr wird NICHT hier installiert - es steckt ausschliesslich im extern
|
||||
# gesourcten Download-Skript (get_data_vds32.R), das ausserhalb dieses
|
||||
# App-Verzeichnisses liegt und seine eigenen Abhaengigkeiten mitbringt.
|
||||
# DBI und RSQLite werden vom gesourcten Pseudonym-Skript benoetigt,
|
||||
# nicht direkt von der App selbst.
|
||||
|
||||
renv::init()
|
||||
|
||||
pkgs = c("shiny", "dplyr", "ggplot2", "haven", "officer", "DBI", "RSQLite", "formr")
|
||||
install.packages(pkgs)
|
||||
|
||||
renv::snapshot()
|
||||
|
||||
message("Setup abgeschlossen. App starten mit: shiny::runApp()")
|
||||
Loading…
Add table
Add a link
Reference in a new issue