November 2018
Intermediate to advanced
556 pages
14h 42m
English
First, we need to prepare our environment:
$ pip install pandas$ pip install numpy$ pip install matplotlib$ pip install seaborn$ pip install scipy
import pandas as pdimport numpy as np# read the datasetdf = pd.read_csv('./data/data.csv')print(df.head)
From the command console, run the Python code again:
$ python my_anomaly_detection.py