Graph Visualization
Essay Preview: Graph Visualization
Report this essay
LAB221 AssignmentType:Long AssignmentCode:J2.L.P0001LOC:400Slot(s):10Title: Simple Graph Visualization Software (sGraphviz)        BackgroundGraph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.In mathematics, and more specifically in graph theory, a graph is a representation of a set of objects where some pairs of objects are connected by links. The interconnected objects are represented by mathematical abstractions called vertices (also called nodes or points), and the links that connect some pairs of vertices are called edges (also called arcs or lines). Typically, a graph is depicted in diagrammatic form as a set of dots for the vertices, joined by lines or curves for the edges.

Program SpecificationsThe Simple Graph Visualization Software (sGraphviz) is a small program that helps user to draw a directed graph. The graph description is written in a very simple graph description language. The graph description includes 02 parts. The first part is a list of vertices. Each vertex has label, and color attributes. The second part is a list of edges. Each edge has direction (A->B: Vertex A to Vertex B) and label. From the graph description, the sGraphviz can visualize the graph and save it in an image file.For example: A traffic light graphGraph description:TrafficLight {        //vertices        R [label=”RED”, color=”red”]        G [label=”GREEN”, color=”green”]        Y [label=”YELLOW”, color=”yellow”]                //Edges        R->G [label=”45″]        G->Y [label=”65″]         Y->R [label=”5″]        }From the graph description above, the sGraphviz can visualize the graph, it looks like.[pic 1]Features:-A text editor for user to type the graph descriptionNew function:  Create a new graph description fileOpen function: Open an existing graph description fileSave function: Save a graph description to text file(New, Open, Save functions are grouped in File menu item)

Get Your Essay

Cite this page

Simple Graph Visualization Software And Diagrams Of Abstract Graphs. (July 13, 2021). Retrieved from https://www.freeessays.education/simple-graph-visualization-software-and-diagrams-of-abstract-graphs-essay/