An open API service indexing awesome lists of open source software.

https://github.com/evertonsavio/data-science-jupyter-notebooks

Jupiter Notebooks Pocket manual for Data Science
https://github.com/evertonsavio/data-science-jupyter-notebooks

Last synced: about 1 month ago
JSON representation

Jupiter Notebooks Pocket manual for Data Science

Awesome Lists containing this project

README

          

# Jupyter_Notebooks_Pocket_Manual
Jupyter notebooks para consulta rapida.
Dataviz seite: https://www.data-to-viz.com

* Lembrete, testar DBSCAN para problemas de fraude.
```
from sklearn.cluster import DBSCAN
dbscan = DBSCAN()
dbscan.fit(X)
print(dbscan.labels_)
```