I am trying to use graph module for plot and trace_values but I come across with this error:
No module named 'graph'
Any help with be greatly appreciated!
import plotly
from plotly.offline import iplot, init_notebook_mode
init_notebook_mode(connected=True)
from graph import plot, trace_values
x_values = list(range(-30, 30, 1))
y_values = list(map(lambda x: output_at(three_x_squared_minus_eleven, x),x_values))
three_x_squared_minus_eleven_trace = trace_values(x_values, y_values, mode = 'lines')
plot([three_x_squared_minus_eleven_trace], {'title': '3x^2 - 11'})
graph?graphmodule is installed on your system? Also, the module namedgraphat PyPI.org is not about graphing but about the data structure about a network. That module is in alpha status and has not been updated since 2005. Are you sure this is what you want?