About

This document serves to guide researchers who wish to manage the biological data from their scientific expedition

Issues or suggestions about the content can be raised through the issue tracker (GitHub account required).

How to build this book locally

This material has been written using bookdown and R. The dependencies of this project is managed using renv.

To build the book locally, clone the repo.

If dependencies are not automatically installed by renv when you open data-fairy.Rproj, try the following command.

renv::restore()

then run the following lines to build the book:

library(here)
bookdown::render_book(here("index.Rmd"))

And view it with:

browseURL("docs/index.html")