Commit 1037f11d authored by Kelly Chang's avatar Kelly Chang
Browse files

kelly push

parent cbba7336
Loading
Loading
Loading
Loading
(8 KiB)

File changed.

No diff preview for this file type.

Encoding_Kelly.ipynb

0 → 100644
+918 −0

File added.

Preview size limit exceeded, changes collapsed.

Untitled.ipynb

deleted100644 → 0
+0 −19
Original line number Diff line number Diff line
%% Cell type:code id:8868bc30 tags:

``` python
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
```

%% Cell type:code id:76317b02 tags:

``` python
data = [2,3,3,4,2,1,5,6,4,3,3,3,6,4,5,4,3,2]
density = kde.gaussian_kde(data)
x = np.linspace(-2,10,300)
y=density(x)

sns.kdeplot(data,bw=0.25)
plt.show()
```
+172 −65

File changed.

Preview size limit exceeded, changes collapsed.

Loading