fred_toolbox

A toolbox for machine learning and data processing


License
MIT
Install
pip install fred_toolbox==0.1.1

Documentation

ML_Toolbox

Visualization

From bokeh

Install

pip3 install fred_toolbox

Example

Visualization

from fred_toolbox import vis as v

x = [0.1, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0]
y  = [i**4 for i in x]

chart = v.Line(x,y)
chart.x_label = "testx"
chart.y_label = "testy"
chart.show()

Line graph

from fred_toolbox import vis as v

x1 = list(range(150))
y1 = [i**2 for i in x]
x2 = list(range(150))
y2 = [i**1.5 for i in x]

chart = v.Dot(x,y,x,[i**1.5 for i in y])
chart.label1 = "testx"
chart.label2 = "testy"
chart.title = "test"
chart.show()

Dot graph