1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/print.R
3\name{print.dgr_graph}
4\alias{print.dgr_graph}
5\title{Print the graph to the terminal}
6\usage{
7\method{print}{dgr_graph}(x, ...)
8}
9\arguments{
10\item{x}{A graph object of class \code{dgr_graph}.}
11}
12\description{
13This function will provide a summary of the graph.
14}
15\examples{
16\dontrun{
17# Create a random graph using the
18# `add_gnm_graph()` function
19graph <-
20  create_graph() \%>\%
21  add_gnm_graph(
22    n = 10,
23    m = 15,
24    set_seed = 23)
25
26# Get a summary of the graph
27graph
28}
29}
30\keyword{internal}
31