Skip to content

Commit

Permalink
Merge pull request #110 from matthewstidham/master
Browse files Browse the repository at this point in the history
Accepted most Lint file changes.
  • Loading branch information
AutoViML authored Apr 29, 2024
2 parents 09a152c + 7820e67 commit 7be67af
Show file tree
Hide file tree
Showing 9 changed files with 2,061 additions and 2,036 deletions.
624 changes: 313 additions & 311 deletions autoviz/AutoViz_Class.py

Large diffs are not rendered by default.

678 changes: 353 additions & 325 deletions autoviz/AutoViz_Holo.py

Large diffs are not rendered by default.

961 changes: 481 additions & 480 deletions autoviz/AutoViz_NLP.py

Large diffs are not rendered by default.

1,572 changes: 771 additions & 801 deletions autoviz/AutoViz_Utils.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion autoviz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
AV = AutoViz_Class()
%%matplotlib inline
dfte = AV.AutoViz(filename, sep=',', depVar='', dfte=None, header=0, verbose=1, lowess=False,
chart_format='svg',max_rows_analyzed=150000,max_cols_analyzed=30, save_plot_dir=None)""" %(
chart_format='svg',max_rows_analyzed=150000,max_cols_analyzed=30, save_plot_dir=None)""" % (
module_type, version_number))
###########################################################################################
250 changes: 133 additions & 117 deletions autoviz/classify_method.py

Large diffs are not rendered by default.

Empty file added autoviz/tests/__init__.py
Empty file.
7 changes: 7 additions & 0 deletions autoviz/tests/test_autoviz_class.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import unittest

from ..AutoViz_Class import AutoViz_Class

class TestAutoVizClass:
def test_add_plots(self):
return True
3 changes: 2 additions & 1 deletion tests/test_deps.py → autoviz/tests/test_deps.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import unittest


class DepsTest(unittest.TestCase):
def test(self):
# have to pip install xgboost
from autoviz import AutoViz_Class as AV
AVC = AV.AutoViz_Class()
self.assertIsNotNone(AVC)
self.assertIsNotNone(AVC)

0 comments on commit 7be67af

Please sign in to comment.