projects
/
platform
/
upstream
/
caffe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af9d6bc
)
update deprecated pandas call
author
downes
<downes>
Wed, 12 Jul 2017 21:52:53 +0000
(14:52 -0700)
committer
downes
<downes>
Wed, 12 Jul 2017 21:52:53 +0000
(14:52 -0700)
pd.scatter_matrix -> pd.plotting.scatter_matrix
examples/brewing-logreg.ipynb
patch
|
blob
|
history
diff --git
a/examples/brewing-logreg.ipynb
b/examples/brewing-logreg.ipynb
index
4b4cd6a
..
0f87185
100644
(file)
--- a/
examples/brewing-logreg.ipynb
+++ b/
examples/brewing-logreg.ipynb
@@
-78,7
+78,7
@@
"# Visualize sample of the data\n",
"ind = np.random.permutation(X.shape[0])[:1000]\n",
"df = pd.DataFrame(X[ind])\n",
- "_ = pd.scatter_matrix(df, figsize=(9, 9), diagonal='kde', marker='o', s=40, alpha=.4, c=y[ind])"
+ "_ = pd.
plotting.
scatter_matrix(df, figsize=(9, 9), diagonal='kde', marker='o', s=40, alpha=.4, c=y[ind])"
]
},
{