Skip to content

Commit

Permalink
added data viz notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
morganmayer authored Mar 7, 2022
1 parent 573160f commit f1c0ccc
Show file tree
Hide file tree
Showing 2 changed files with 50,272 additions and 0 deletions.
50,247 changes: 50,247 additions & 0 deletions data_viz.ipynb

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions testing.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import Compare as compare

if __name__ == '__main__':

input_file = "test_cn.yaml"

c = compare.Compare(input_file)
c.split()
c.plot_data()
c.post_split_cleaning()

c.do_all_transformations()

c.plot_save_all_corr_features(corr_type="pearson")

c.tune_train_all_models()

c.calculate_error()
c.save_error()
c.plot_performances()
c.calculate_save_rmse()
c.error_hist()

c.note_important_features()
c.save_test_performance_df()

0 comments on commit f1c0ccc

Please sign in to comment.