In [1]:
import commfxs as h
from plotly.offline import plot
from plotly.offline import download_plotlyjs, init_notebook_mode, iplot
import plotly.graph_objs as go
init_notebook_mode()
In [2]:
bars = go.Bar(x=[1, 2, 3, 4, 5], y=[1, 2, 3, 4, 5])
layout = go.Layour(title = "Test Title")
iplot(go.Figure(bars = go.Data([bars]), layout = layout))
In [3]:
h.getMatrix("Areas.xlsx", "Sarah")
Out[3]:
In [4]:
h.getMatrix("Areas.xlsx", "Sarah", better = 1./3, muchbetter = 1./9)
Out[4]:
In [5]:
h.single_stats("Areas.xlsx", "Sarah")
Out[5]:
In [6]:
h.single_stats("Areas.xlsx", "Sarah", better = 1./3, muchbetter = 1./9)
Out[6]:
In [ ]: