R/networks.R

Defines functions plot_hes

Documented in plot_hes

#' @title Plot Network
#' @description Plots a network of kind Higher Educational space. 
#' @param g A graph object (igraph graph). 
#' @importFrom igraph plot.igraph
#' 
#' @examples 
#' plot_hes(g=ches0611)
#' @export
plot_hes <- function(g)
{                                                                     
  plot.igraph(g,  vertex.label.cex = 0.5, vertex.label.font = 1, vertex.label.family = "Helvetica", vertex.label.color="black", asp =FALSE)
}
mguevara/HES documentation built on Feb. 20, 2020, 12:45 a.m.