1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/read.gexf.R
3\name{read.gexf}
4\alias{read.gexf}
5\title{Reads gexf (.gexf) file}
6\usage{
7read.gexf(x)
8}
9\arguments{
10\item{x}{String. Path to the gexf file.}
11}
12\value{
13A \code{gexf} object.
14}
15\description{
16\code{read.gexf} reads gexf graph files and imports its elements as a
17\code{gexf} class object
18}
19\note{
20By the time attributes and viz-attributes aren't supported.
21}
22\examples{
23
24  fn <- system.file("gexf-graphs/lesmiserables.gexf", package = "rgexf")
25  mygraph <- read.gexf(fn)
26
27}
28\references{
29The GEXF project website: https://gephi.org/gexf/format/
30}
31\author{
32George Vega Yon
33
34Jorge Fabrega Lacoa
35}
36\keyword{IO}
37