Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

hr_to_sf

Convert


Description

Convert

Usage

hr_to_sf(x, ...)

## S3 method for class 'tbl_df'
hr_to_sf(x, col, ...)

Arguments

x

A tibble with a list column with individual home ranges.

...

Additional columns that should be transferred to the new tible.

col

The column where the home

Value

A data.frame with a simple feature column (from the sf) package.

Examples

data("amt_fisher")
hr <- amt_fisher %>% nest(data = -id) %>%
  mutate(hr = map(data, hr_mcp), n = map_int(data, nrow)) %>%
  hr_to_sf(hr, id, n)

hr <- amt_fisher %>% nest(data = -id) %>%
  mutate(hr = map(data, hr_kde), n = map_int(data, nrow)) %>%
  hr_to_sf(hr, id, n)


## Not run: 
ggplot(hr) + geom_sf()


## End(Not run)

amt

Animal Movement Tools

v0.1.4
GPL-3
Authors
Johannes Signer [aut, cre], Brian Smith [ctb], Bjoern Reineking [ctb], Ulrike Schlaegel [ctb], John Fieberg [ctb], Scott LaPoint [dtc]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.