[7a0be0]: / man / net_par.Rd

Download this file

55 lines (48 with data), 1.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/5.topological.R
\name{net_par}
\alias{net_par}
\alias{c_net_index}
\title{Calculate all topological indexes of a network}
\usage{
net_par(
go,
mode = c("v", "e", "n", "all"),
fast = TRUE,
remove_negative = FALSE
)
c_net_index(go, force = FALSE)
}
\arguments{
\item{go}{igraph or metanet}
\item{mode}{calculate what? c("v", "e", "n", "all")}
\item{fast}{less indexes for faster calculate ?}
\item{remove_negative}{remove negative edge or not? default: FALSE}
\item{force}{replace existed net_par}
}
\value{
a 3-elements list
\item{n_index}{indexs of the whole network}
\item{v_index}{indexs of each vertex}
\item{e_index}{indexs of each edge}
}
\description{
Calculate all topological indexes of a network
Add topological indexes for a network
}
\examples{
igraph::make_graph("Walther") \%>\% net_par()
c_net_index(co_net) -> co_net_with_par
}
\seealso{
Other topological:
\code{\link{extract_sample_net}()},
\code{\link{fit_power}()},
\code{\link{get_group_skeleton}()},
\code{\link{links_stat}()},
\code{\link{nc}()},
\code{\link{rand_net_par}()},
\code{\link{rand_net}()},
\code{\link{smallworldness}()}
}
\concept{topological}