You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a collection of short introductions or links with commented R code that cover other topics that might be useful for ecologists.
## Bioacoustic analyse
Bioacoustic analyses are nicely covered in a blog by [Marcelo Araya-Salas](https://marce10.github.io).
## Python {#python}
Like R, python is a high-level programming language that is used by many ecologists. The [reticulate](https://rstudio.github.io/reticulate/index.html) package provides a comprehensive set of tools for interoperability between Python and R.
$\begin{aligned}
& median =
\begin{cases}
x_{(n+1)/2} & \quad \text{if } n \text{ is odd}\\
\frac{1}{2}(x_{n/2} + x_{n/2+1}) & \quad \text{if } n \text{ is even}