-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sistemati da roxygen2 durante il checking.
- Loading branch information
Showing
2 changed files
with
12 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,17 @@ Title: mplex | |
Version: 1.0 | ||
Date: 2017-01-07 | ||
Author: Emanuele Degani | ||
Imports: igraph | ||
Imports: | ||
igraph | ||
Maintainer: Emanuele Degani <[email protected]> | ||
Description: This package allows to implement multiplex networks into the R framework. Multiplex networks are networks composed of a multiplicity of overlapping nets that | ||
capture the different types of connection between nodes within the network, taking into account both relationships within a same layer and relationships between a same | ||
node located in different layers of the overall network. Some of the most common descriptors, clustering indices and centrality measures can be calculated starting from a set of nodes and layers given in input by the user. | ||
Description: This package allows to implement multiplex networks into the | ||
R framework. Multiplex networks are networks composed of a multiplicity of | ||
overlapping nets that capture the different types of connection between nodes | ||
within the network, taking into account both relationships within a same layer | ||
and relationships between a same node located in different layers of the overall | ||
network. Some of the most common descriptors, clustering indices and centrality | ||
measures can be calculated starting from a set of nodes and layers given in | ||
input by the user. | ||
License: GPL (>=2) | ||
URL: https://github.com/Achab94/mplex | ||
RoxygenNote: 5.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,2 @@ | ||
# exportPattern("^[[:alpha:]]+") | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export( | ||
"adjacency.multiplex", | ||
"aggregatedOverlapping.multiplex", | ||
"aggregatedTopological.multiplex", | ||
"C1Global.multiplex", | ||
"c1Local.multiplex", | ||
"C2Global.multiplex", | ||
"c2Local.multiplex", | ||
"create.multiplex", | ||
"degree.multiplex", | ||
"degreeCentrality.multiplex", | ||
"degreeDistribution.multiplex", | ||
"densityLayers.multiplex", | ||
"entropyDegree.multiplex", | ||
"globalOverlayClustering.multiplex", | ||
"heterEigenvectorCentrality.multiplex", | ||
"interlayer.multiplex", | ||
"layers.multiplex", | ||
"localClustering.multiplex", | ||
"meanDegree.multiplex", | ||
"nodes.multiplex", | ||
"participationDegree.multiplex", | ||
"supraAdjacency.multiplex", | ||
"supraEigenvectorCentrality.multiplex", | ||
"totalDegree.multiplex", | ||
"type.multiplex", | ||
"varianceDegree.multiplex" | ||
) | ||
|
||
importFrom("igraph", degree) | ||
importFrom("igraph", degree.distribution) | ||
importFrom("igraph", graph.adjacency) | ||
importFrom("igraph", graph.density) | ||
importFrom("igraph", transitivity) |