bgpart | R Documentation |
This function will produce bioregion/cell membership tables based on a variety of partitioning algorithms.
bgpart(
dat,
tax,
cell,
bin = NULL,
ocq = 0,
base = "network",
feedback = FALSE,
slq = 50,
tracing = FALSE,
coll = NULL,
cols = TRUE,
omitted = TRUE,
...
)
dat |
|
tax |
|
cell |
( |
bin |
|
ocq |
|
base |
( |
feedback |
( |
slq |
|
coll |
Used only for the 'network' approaches implemented in |
cols |
|
... |
Arguments passed to the |
A lot stuff should come here!
# load example dataset
data(ceno6)
# single-slice partitioning (using infomap)
oneC6 <- bgpart(ceno6,bin=NULL, tax="trinomen", cell="icos", ocq=10, base="network", method="infomap")
# iteration of sing slice partitiongs for every stg, separately (using infomap)
slicewiseC6 <- bgpart(ceno6,bin="stg", tax="trinomen", cell="icos", ocq=10, base="network", method="infomap")
# tracing method, coarser resolution (using infomap)
tracing <- bgpart(ceno6,bin="stg", tax="trinomen", cell="icos", ocq=10, base="network", method="infomap", tracing=TRUE)
# SEE THE bgplot() function for plotting!
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.