Learn R Programming

rgexf (version 0.16.3)

head.gexf: head method for gexf objects

Description

List the first n_nodes and n_edges of the gexf file.

Usage

# S3 method for gexf
head(x, n_nodes = 6L, n_edges = n_nodes, ...)

Arguments

x

An object of class gexf.

n_nodes, n_edges

Integers. Number of nodes and edges to print

...

Ignored

Examples

Run this code
fn <- system.file("gexf-graphs/lesmiserables.gexf", package = "rgexf")
g  <- read.gexf(fn)
head(g, n_nodes = 5)

Run the code above in your browser using DataLab