File: intergraph-package.R

package info (click to toggle)
r-cran-intergraph 2.0-4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 392 kB
  • sloc: sh: 13; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,245 bytes parent folder | download
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
#' Coercion Routines for Network Data Objects
#' 
#' This package contains methods for coercion between various classes used to
#' represent network data in R.
#' 
#' Functions implemented in this package allow to coerce (i.e. convert) network
#' data between classes provided by other R packages. Currently supported
#' classes are: "network" from package \pkg{network}, "igraph" from package
#' \pkg{igraph}.
#' 
#' The main functions are:
#' \itemize{
#' \item \code{\link{asNetwork}} and its methods to create objects of class
#' "network".
#' 
#' \item \code{\link{asIgraph}} and its methods to create objects of class
#' "igraph".
#' }
#' See their help pages for more information and examples.
#' 
#' As all the supported packages are written using S3 methods, so are the
#' methods in this package.
#' 
#' If you find this package useful in your work please cite it. Type
#' \code{citation(package="intergraph")} for the information how to do that.
#'
#' @importFrom network as.matrix.network
#' @importFrom network add.edges.network
#'
#' @name intergraph-package
#'
#' @author Written and maintained by Michal Bojanowski \email{m.bojanowski@@icm.edu.pl}.
#'
#' @keywords package
#'
#' @example examples/package-intergraph.R
"_PACKAGE"