plot.c.degree {netmodels} | R Documentation |
Plots the cumulative degree distribution of the graph, the output may be redirected to a PDF file.
plot.c.degree(x, main = "Cumulative Distribution", type = "p", xlab = "Rank", ylab = "Frequency", col = "blue", log = "xy", filename = NULL, ...)
x |
Could be a igraph network object or the degree distribution of the network |
main |
Title of the output graphic, default = "Cumulative Distribution" |
type |
R graphic parameter for the plot style, default = "p" (points) |
xlab |
X-Axis name, default = "Rank" |
ylab |
Y-Axis name, default = "Frequency" |
col |
Plot color, default = "blue" |
log |
Axis log scaling, default="xy" |
filename |
Filename of the pdf output file (optional), default = NULL |
... |
Additional arguments used by the standard function plot |
Domingo Vargas
Generic R plot function: plot
data(test.net,package="netmodels") plot.c.degree(test.net)