network_from_interactions function

Function to obtain a network structure from interactions dataframe

Function to obtain a network structure from interactions dataframe

network_from_interactions(species_raw, interactions, n_cores = 1)

Arguments

  • species_raw: A dataframe consisting of raw GPS observations. It should have at least four columns namely "animal_id", "datetime", "latitude|_rad", and "longitude_rad". "latitude|_rad", and "longitude_rad" are latitude and longitude values in radians respectively. See function "get_coordinates_in_radian" to get these values.
  • interactions: A dataframe of interactions obtained from raw GPS observations using the function "get_interactions"
  • n_cores: Number of cores for parallel processing, default is 1

Returns

An object of class igraph

Examples

data(elk_data_2010, elk_interactions_2010) network_from_interactions(elk_data_2010, elk_interactions_2010)
  • Maintainer: Prabhleen Kaur
  • License: MIT + file LICENSE
  • Last published: 2024-03-25

Useful links