Diff of /man/module_detect.Rd [000000] .. [13df9a]

Switch to unified view

a b/man/module_detect.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/6.modules.R
3
\name{module_detect}
4
\alias{module_detect}
5
\alias{c_net_module}
6
\title{Detect the modules}
7
\usage{
8
module_detect(
9
  go,
10
  method = "cluster_fast_greedy",
11
  n_node_in_module = 0,
12
  delete = FALSE
13
)
14
}
15
\arguments{
16
\item{go}{an igraph object}
17
18
\item{method}{cluster_method: "cluster_walktrap", "cluster_edge_betweenness", "cluster_fast_greedy", "cluster_spinglass"}
19
20
\item{n_node_in_module}{transfer the modules less than n_node_in_module to "others"}
21
22
\item{delete}{logical, delete others modules? default:FALSE, the others module will be "others".}
23
}
24
\value{
25
an igraph object
26
}
27
\description{
28
Detect the modules
29
}
30
\examples{
31
data("c_net")
32
module_detect(co_net) -> co_net_modu
33
}
34
\seealso{
35
Other module: 
36
\code{\link{filter_n_module}()},
37
\code{\link{get_community}()},
38
\code{\link{get_module_eigen}()},
39
\code{\link{get_module}()},
40
\code{\link{module_eigen}()},
41
\code{\link{module_net}()},
42
\code{\link{summary_module}()},
43
\code{\link{to_module_net}()},
44
\code{\link{zp_analyse}()}
45
}
46
\concept{module}