Skip to content

Commit 7be67af

Browse files
authored
Merge pull request #110 from matthewstidham/master
Accepted most Lint file changes.
2 parents 09a152c + 7820e67 commit 7be67af

9 files changed

+2061
-2036
lines changed

autoviz/AutoViz_Class.py

+313-311
Large diffs are not rendered by default.

autoviz/AutoViz_Holo.py

+353-325
Large diffs are not rendered by default.

autoviz/AutoViz_NLP.py

+481-480
Large diffs are not rendered by default.

autoviz/AutoViz_Utils.py

+771-801
Large diffs are not rendered by default.

autoviz/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
AV = AutoViz_Class()
1414
%%matplotlib inline
1515
dfte = AV.AutoViz(filename, sep=',', depVar='', dfte=None, header=0, verbose=1, lowess=False,
16-
chart_format='svg',max_rows_analyzed=150000,max_cols_analyzed=30, save_plot_dir=None)""" %(
16+
chart_format='svg',max_rows_analyzed=150000,max_cols_analyzed=30, save_plot_dir=None)""" % (
1717
module_type, version_number))
1818
###########################################################################################

autoviz/classify_method.py

+133-117
Large diffs are not rendered by default.

autoviz/tests/__init__.py

Whitespace-only changes.

autoviz/tests/test_autoviz_class.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import unittest
2+
3+
from ..AutoViz_Class import AutoViz_Class
4+
5+
class TestAutoVizClass:
6+
def test_add_plots(self):
7+
return True
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import unittest
22

3+
34
class DepsTest(unittest.TestCase):
45
def test(self):
56
# have to pip install xgboost
67
from autoviz import AutoViz_Class as AV
78
AVC = AV.AutoViz_Class()
8-
self.assertIsNotNone(AVC)
9+
self.assertIsNotNone(AVC)

0 commit comments

Comments
 (0)