Skip to content

Commit 051abd8

Browse files
committed
update website for 0.5.10
1 parent 3756f33 commit 051abd8

File tree

71 files changed

+24085
-60160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+24085
-60160
lines changed

_downloads/91ff5ec84a91b5e66f7a05df4d20fa95/mpld3_demo.html

+4,592-11,826
Large diffs are not rendered by default.

_downloads/98331852fdd146cfc4980bfb9d37630b/sliderPlugin.html

+4,674-11,856
Large diffs are not rendered by default.

_downloads/b522c975f1a1dd2db5f840b129cdc12d/linked_brush.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,12 @@
99
import numpy as np
1010
import matplotlib
1111
import matplotlib.pyplot as plt
12-
from sklearn.datasets import load_iris
1312

1413
import mpld3
1514
from mpld3 import plugins, utils
1615

1716

18-
data = load_iris()
19-
X = data.data
20-
y = data.target
17+
X, y, _ = utils.load_test_dataset("iris")
2118

2219
# dither the data for clearer plotting
2320
X += 0.1 * np.random.random(X.shape)

0 commit comments

Comments
 (0)