1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/rgexf-package.R
3\docType{package}
4\name{rgexf-package}
5\alias{rgexf-package}
6\alias{rgexf}
7\alias{gephi}
8\title{Build, Import and Export GEXF Graph Files}
9\description{
10Create, read and write GEXF (Graph Exchange XML Format) graph files (used in
11Gephi and others).
12}
13\details{
14Using the XML package, it allows the user to easily build/read graph files
15including attributes, GEXF viz attributes (such as color, size, and
16position), network dynamics (for both edges and nodes) and edge weighting.
17
18Users can build/handle graphs element-by-element or massively through
19data-frames, visualize the graph on a web browser through "gexf-js" (a
20javascript library) and interact with the igraph package.
21
22Finally, the functions \code{igraph.to.gexf} and \code{gexf.to.igraph}
23convert objects from \code{igraph} to \code{gexf} and viceversa keeping
24attributes and colors.
25
26Please visit the project home for more information:
27\url{https://github.com/gvegayon/rgexf}.
28}
29\note{
30See the GEXF primer for details on the GEXF graph format:
31\url{https://gephi.org/gexf/1.2draft/gexf-12draft-primer.pdf}
32}
33\examples{
34
35if (interactive()) {
36    demo(gexf) # Example of gexf command using fictional data.
37    demo(gexfattributes) # Working with attributes.
38    demo(gexfbasic) # Basic net.
39    demo(gexfdynamic) # Dynamic net.
40    demo(edge.list) # Working with edges lists.
41    demo(gexffull) # All the package.
42    demo(gexftwitter) # Example with real data of chilean twitter accounts.
43    demo(gexfdynamicandatt) # Dynamic net with static attributes.
44    demo(gexfbuildfromscratch) # Example building a net from scratch.
45    demo(gexfigraph) # Two-way gexf-igraph conversion
46    demo(gexfrandom) # A nice routine creating a good looking graph
47}
48
49}
50\references{
51\itemize{ \item rgexf project site:
52\url{https://github.com/gvegayon/rgexf} \item Gephi project site:
53\url{https://gephi.org/} \item GEXF project site: \url{https://gephi.org/gexf/format//}
54\item gexf-js project website: \url{https://github.com/raphv/gexf-js}
55\item Sigmasj project site: \url{http://sigmajs.org/}
56}
57}
58\keyword{package}
59