Please read Readme.md
Please click https://github.com/SchenbergZY/Tabelle-Fallstudie-1/raw/main/21341-0001_$F.csv to download the table to your computer. And then please upload the downloaded file to Binder or Colab you are running with.
This function has no effect running under Colab/Binder when trigger. However in Windows command line, a window will pop out to let you choose a csv file to be loaded.
This function has no effect running under Colab/Binder when trigger. However in Windows command line, a window will pop out to let you edit the dataframe parameter on fly.
- User needs to upload the CSV file
- tidyverse pre-installed so just run installing takes a short time
- running cell
head(data_csv)after dataframe loaded takes infinite time as some text in the origin CSV file is not UTF-8 encoded, and user has to stop running the cell. After that user need to rerunlibrary(tidyverse)and data_csv read command again. Otherwise there will be other bugs in showing the dataframe loaded - choose.files() not work in Colab
- running
?read.csv2pop up a window at the right side of the webpage show(data_csv_3)not work because nothing called data_csv_3 defined- pandoc pre-installed so just run installing takes a short time
edit(Tabellendaten)not work in Colab
- User needs to upload the CSV file
- tidyverse not-installed so run installing takes a long time
- running cell
head(data_csv)after dataframe loaded takes long time as some text in the origin CSV file is not UTF-8 encoded, please wait till finished. - choose.files() not work in Binder
- running
?read.csv2pop up a window at the right side of the webpage show(data_csv_3)not work because nothing called data_csv_3 defined- pandoc not installed so run installing takes a while
edit(Tabellendaten)not work in Binder
Waiting for long time with no response.
- Convert back to the German-specific letter
- left-strip the space of column "Angestelltenverhaeltnis"
- Convert column "Personalgruppe" to "Arbeitsverhältnis"
TBD