-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.Rmd
More file actions
executable file
·44 lines (35 loc) · 1.65 KB
/
Copy pathindex.Rmd
File metadata and controls
executable file
·44 lines (35 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
title: "'celltracktech' Data Analysis package"
author: "Jessica Gorzo, Sean Burcher, Meelyn Pandit"
editor: "Meelyn Pandit"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: "doc.bib"
biblio-style: apalike
link-citations: yes
github-repo: rstudio/bookdown-demo
description: "This is a manual for the R package 'celltracktech'"
favicon: "CTT-FB-logo-STACKED.jpg"
---
```{r, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(eval = FALSE)
```
# AOS2024 - 'celltracktech' Workshop {-}
This RBook goes over the files, functions, and analyses from the 2024 American Ornithological Society (AOS) Workshop in Estes Park, CO on the 'celltracktech' R package. This package was developed by Dr. Jessica Gorzo, Dr. Sean Burcher, and Dr. Meelyn Pandit.
This document will serve as a tutorial on how Cellular Tracking Technologies (CTT) registered users can download their data from our server, analyze the data using multilateration, and visualize the data using the built-in package functions.
This tutorial provides step-by-step instructions on how to obtain your data. This style is used to increase accessibility for absolute beginners in R, SQL, and data science.
## Additional Libraries Needed (Linux users)
**Note** If you are using Linux (specifically Ubuntu), you may need to install the following libraries in the teriminal.
### Install PostgreSQL libraries
```{bash}
sudo apt install libpq-dev libssl-dev
```
### Installing R Spatial on Ubuntu
```{bash}
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt update
sudo apt install libgdal-dev libgeos-dev libproj-dev libtbb-dev
```