a b/man/get_group_skeleton.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/2-2.manipulate.R
3
\name{get_group_skeleton}
4
\alias{get_group_skeleton}
5
\alias{skeleton_plot}
6
\title{Get skeleton network according to a group}
7
\usage{
8
get_group_skeleton(go, Group = "v_class", count = NULL, top_N = 8)
9
10
skeleton_plot(ske_net, split_e_type = TRUE, ...)
11
}
12
\arguments{
13
\item{go}{network}
14
15
\item{Group}{vertex column name}
16
17
\item{count}{take which column count, default: NULL}
18
19
\item{top_N}{top_N}
20
21
\item{ske_net}{skeleton}
22
23
\item{split_e_type}{split by e_type? default: TRUE}
24
25
\item{...}{additional parameters for \code{\link[igraph]{igraph.plotting}}}
26
}
27
\value{
28
skeleton network
29
}
30
\description{
31
Get skeleton network according to a group
32
33
Skeleton plot
34
}
35
\examples{
36
get_group_skeleton(co_net) -> ske_net
37
skeleton_plot(ske_net)
38
}
39
\seealso{
40
Other topological: 
41
\code{\link{extract_sample_net}()},
42
\code{\link{fit_power}()},
43
\code{\link{links_stat}()},
44
\code{\link{nc}()},
45
\code{\link{net_par}()},
46
\code{\link{rand_net_par}()},
47
\code{\link{rand_net}()},
48
\code{\link{smallworldness}()}
49
}
50
\concept{topological}