Logo Lanfrica

WhitneyH1317/Navigating-the-Wild-in-R-Course

Domain:

environment and energy

Record type:

project
Creator:
Whi
Host:
Materials and lesson plans for course in data processing, wrangling, and visualization for wildlife ecologists, hosted by Dr. Emily Bennitt at University of Botswana's Okavango Research Institute # Navigating-the-Wild-in-R-Course Materials and lesson plans for course in data processing, wrangling, and visualization for wildlife ecologists, taught by Dr. K Whitney Hansen and Dr. Johannes De Groeve. Hosted by Dr. Emily Bennitt at University of Botswana's Okavango Research Institute Lesson 01 can be found here. Part of the material for Lesson 01 has been adapted from Dr. Simona Piccardi's data organizational workshop materials (github.com). Lessons 04 part 2 and 05 were adapted from Dr. Brian Smith's movement data workshop materials (github.com). * www: Navigating-the-Wild-in-R * repository: Navigating-the-Wild-in-R # Directory Structure The repository contains the following files and directories: ``` ├── Navigating-the-Wild-in-R-Course.Rproj ├── README.md ├── additional_materials │   ├── 01_sim_data.R │   ├── 01_sim_habitat.R │   ├── 02_sim_data.R │   ├── 04_pt2_lecture.html │   ├── 04_refs.bib │   ├── HSF_exercise.html │   └── ICTWS 2025 Workshop.pptx ├── code │   ├── lesson_02.R │   ├── lesson_02pt2.R │   ├── lesson_03.R │   ├── lesson_04.R │   ├── lesson_04pt2.R │   ├── lesson_05.R │   └── lesson_05pt2.R │   ├── exercise_solutions │   │   ├── 02_solutions.R │   │   ├── 02_pt2_solutions.R │   │   ├── 03_solutions.R │   │   ├── 04_solutions.R │   │   ├── 04_pt2_solutions.R │   │   └── 05_HSF_solution.R │   ├── fun │   │   ├── bcrw.R │   │   └── reclass_landuse.R ├── data │   ├── lesson02 │   │   ├── CA_counties.geojson │   │   ├── CA_counties.qmd │   │   ├── CA_protected_areas.geojson │   │   ├── CA_protected_areas.gpkg │   │   ├── CA_protected_areas.qmd │   │   ├── CA_roads.geojson │   │   ├── CA_roads.qmd │   │   ├── areas_valid.gpkg │   │   ├── landcover.tif │   │   ├── slope.tif │   │   └── treecover.tif │   ├── lesson03 │   │   ├── florida_detections.rda │   │   └── florida_stack.tif │   ├── lesson04 │   │   ├── fawn_data.rda │   │   ├── texas_move.rda │   │   └── texas_stack.tif │   └── lesson05 │   ├── hab …