Graph
Last updated
Was this helpful?
Last updated
Was this helpful?
iota.graph.Graph()
Description Iota graph object.
Methods
Static methods
Variables
description
(str) user description
filepath
(str) file containing the graph data (csv format)
name
(str) graph name
Generate a html document, containing the plots for a graph
Arguments
output_file
: (text) file path where the html graph will be saved
layout
: (dict) layout used to generate the graph (Default: None)
Example
Get xtitle,ytitle pair from the graph
Example
Get the raw underlying data of a graph return an OrderedDict
of pairs { 'column_name' : ArrayFloat() }
Example
Returns list of labels of graph curves (xtitle and trace labels)
Example
Get the label of each trace in the graph
Example
Returns the dictionary containing the default layout used if nothing defined by the user
Example
Generate a html graph file invoking directly plotly
Arguments
file
: (text) file path where the html graph will be saved
data
: (dict) data to be plotted
layout
: (dict) layout used to generate the graph (Default: None)
Example