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
- Host: GitHub
- URL: https://github.com/evertonsavio/data-science-jupyter-notebooks
- Owner: evertonsavio
- Created: 2020-01-20T20:16:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-20T01:38:29.000Z (almost 6 years ago)
- Last Synced: 2025-01-02T12:13:11.848Z (over 1 year ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 90.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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_)
```