get_node_list {chessboard} | R Documentation |
Get the list of nodes
Description
Retrieves the node list by selecting and ordering the column node
of the
output of the function create_node_labels()
.
Usage
get_node_list(nodes)
Arguments
nodes |
a |
Value
A vector of node labels.
Examples
library("chessboard")
# Two-dimensional sampling (only) ----
sites_infos <- expand.grid("transect" = 1:3, "quadrat" = 1:5)
nodes <- create_node_labels(data = sites_infos,
transect = "transect",
quadrat = "quadrat")
get_node_list(nodes)
[Package chessboard version 0.1 Index]