Skip to contents

This function displays several key information regarding a seal.

Usage

plot_ind(data_seal, col_text = "black", col_back = "transparent")

Arguments

data_seal

A table containing information about an animal's diving behavior (maxdepth, lat, lon, date, driftrate)

col_text

The color of the text

col_back

The color of the background

Value

A ggplot object which contains four figures

Details

  1. A map of the seal's trip at sea with a color code based on the number of days since departure

  2. The max depth reached for each dives across time

  3. The evolution of their daily median drift rate across time

  4. The evolution of their ADL across time

Examples

if (FALSE) {
# load data
data_nes <- get_data("nes")

# plot result
plot_ind(data_nes$year_2018$ind_2018070)
}