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

File tree

9 files changed

+2061
-2036
lines changed

9 files changed

+2061
-2036
lines changed

autoviz/AutoViz_Class.py

Lines changed: 313 additions & 311 deletions
Large diffs are not rendered by default.

autoviz/AutoViz_Holo.py

Lines changed: 353 additions & 325 deletions
Large diffs are not rendered by default.

autoviz/AutoViz_NLP.py

Lines changed: 481 additions & 480 deletions
Large diffs are not rendered by default.

autoviz/AutoViz_Utils.py

Lines changed: 771 additions & 801 deletions
Large diffs are not rendered by default.

autoviz/__init__.py

Lines changed: 1 addition & 1 deletion
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

Lines changed: 133 additions & 117 deletions
Large diffs are not rendered by default.

autoviz/tests/__init__.py

Whitespace-only changes.

autoviz/tests/test_autoviz_class.py

Lines changed: 7 additions & 0 deletions
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
Lines changed: 2 additions & 1 deletion
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)