A toolbox for machine learning and data processing
Project description
# ML_Toolbox

[](https://codebeat.co/projects/github-com-fredliang44-ml_toolbox-master)
## Visualization
From [bokeh](https://bokeh.pydata.org)
## Install
``` bash
pip3 install fred_toolbox
```
## Example
### Visualization
```python
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()
```

```python
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()
```


[](https://codebeat.co/projects/github-com-fredliang44-ml_toolbox-master)
## Visualization
From [bokeh](https://bokeh.pydata.org)
## Install
``` bash
pip3 install fred_toolbox
```
## Example
### Visualization
```python
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()
```

```python
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()
```

Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fred_toolbox-0.1.1.tar.gz
(1.5 kB
view details)
File details
Details for the file fred_toolbox-0.1.1.tar.gz.
File metadata
- Download URL: fred_toolbox-0.1.1.tar.gz
- Upload date:
- Size: 1.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccad1f8ce7b0c789f4073088bbddafc2c83025b66cc03c1f3720a7ffdbf09bb5
|
|
| MD5 |
264cdd38911d7d8e77483fe12c8800e3
|
|
| BLAKE2b-256 |
17aa643d7f96790f0e7ca8d5f09040e0537f53007b877ff928792bf36026b24b
|