The Research Institute for Nature and Forest (INBO) Coding Club unites all scientists of INBO and beyond who want to develop their programming skills in a pleasant and supportive environment to do research more effectively and reproducible. We focus on the R language and the scope is to manipulate and use (biodiversity) data to improve our data management skills and do research more efficiently.
The coding club is held monthly on alternate Tuesday and Thursday, from 10 a.m. till 12 a.m., in Herman Terilinck building (Tour & Taxis, Brussels).
Depending on the availability and capacity of the lecture rooms, the coding club is typically limited to 25 participants. We stream our sessions via Google Meet as well. Each session focusses on a specific theme and is independent from any other session, so people can just attend when available or interested.
Bringing your own laptop is mandatory, as we will always work together on the code.
The repository structure is described below.
├── README.md : Description of this repository
├── LICENSE : Repository license
├── cheat_sheets : Collection of cheatsheets used during sessions
│ ├── 20180123_cheat...
│ └── ...
├── docs : Coding club website
│ ├── assets
│ │ ├── css
│ │ └── images : Images/logos used inside the website/presentations
│ ├── _config.yml
│ ├── index.md
│ ├── sessions : session presentations folder
│ │ ├── 20190226_gis_vector.html
│ │ ├── ...
│ │ ├── index.md
│ │ └── template.html
│ └── workflow.md : How to organize a coding club at INBO
├── data : Data sets used during sessions
│ ├── 20180222
| │ ├── 20180222_species.csv
| │ └── ...
│ └── ...
└── src
├── 20180522 : Code used during sessions
│ ├── 20180522_challenges.r
│ └── ...
└── ...