Skip to content

Commit

Permalink
fix update 0.3.1 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
reiinakano committed Sep 17, 2017
1 parent 0247b17 commit 89a6ab3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ If so, please consider citing Scikit-plot with DOI [![DOI](https://zenodo.org/ba

#### APA

> Reiichiro Nakano. (2017). reiinakano/scikit-plot: 0.3.0 [Data set]. Zenodo. http://doi.org/10.5281/zenodo.293191
> Reiichiro Nakano. (2017). reiinakano/scikit-plot: 0.3.1 [Data set]. Zenodo. http://doi.org/10.5281/zenodo.293191
#### IEEE

> [1]Reiichiro Nakano, “reiinakano/scikit-plot: 0.3.0”. Zenodo, 19-Feb-2017.
> [1]Reiichiro Nakano, “reiinakano/scikit-plot: 0.3.1”. Zenodo, 19-Feb-2017.
#### ACM

> [1]Reiichiro Nakano 2017. reiinakano/scikit-plot: 0.3.0. Zenodo.
> [1]Reiichiro Nakano 2017. reiinakano/scikit-plot: 0.3.1. Zenodo.
Happy plotting!
2 changes: 1 addition & 1 deletion scikitplot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import, division, print_function, unicode_literals
from . import metrics, cluster, decomposition, estimators
__version__ = '0.3.0'
__version__ = '0.3.1'


from scikitplot.classifiers import classifier_factory
Expand Down
3 changes: 0 additions & 3 deletions scikitplot/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import numpy as np

from sklearn.base import clone
from sklearn.utils.estimator_checks import check_estimator
from joblib import Parallel, delayed


Expand Down Expand Up @@ -73,8 +72,6 @@ def plot_elbow_curve(clf, X, title='Elbow Plot', cluster_ranges=None, n_jobs=1,
:align: center
:alt: Elbow Curve
"""
check_estimator(clf)

if cluster_ranges is None:
cluster_ranges = range(1, 12, 2)
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def run_tests(self):

setup(
name='scikit-plot',
version='0.3.0',
version='0.3.1',
url='https://github.com/reiinakano/scikit-plot',
license='MIT License',
author='Reiichiro Nakano',
Expand Down

0 comments on commit 89a6ab3

Please sign in to comment.