Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 386 Bytes

quickstart.rst

File metadata and controls

19 lines (12 loc) · 386 Bytes

Quickstart

Installation is most easily done through pip, which takes care of all required dependencies:

pip install knowyourdata

The simplest way to use KnowYourData is to pass it a numpy array:

import numpy as np
from knowyourdata import kyd

# setting x as a numpy array
x = np.random.randn(200)
kyd(x)