Skip to content

Commit 2bbec7b

Browse files
committed
Merge pull request scikit-learn#4853 from amueller/fix_ica_pca_example
[MRG] DOC remove linewidth in pca/ica example
2 parents 1d28349 + 891b841 commit 2bbec7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/decomposition/plot_ica_vs_pca.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# Plot results
6262

6363
def plot_samples(S, axis_list=None):
64-
plt.scatter(S[:, 0], S[:, 1], s=2, marker='o', linewidths=0, zorder=10,
64+
plt.scatter(S[:, 0], S[:, 1], s=2, marker='o', zorder=10,
6565
color='steelblue', alpha=0.5)
6666
if axis_list is not None:
6767
colors = ['orange', 'red']

0 commit comments

Comments
 (0)