Upload files to "/"
This commit is contained in:
14
statis_main.py
Normal file
14
statis_main.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from data_process import StatisticData, Outputer
|
||||
|
||||
if __name__=="__main__":
|
||||
deal_folder = "deal"
|
||||
not_deal_folder = "not_deal"
|
||||
|
||||
deal_statistic = StatisticData(deal_folder)
|
||||
deal_data = deal_statistic.main()
|
||||
not_deal_statistic = StatisticData(not_deal_folder)
|
||||
not_deal_data= not_deal_statistic.main()
|
||||
|
||||
outputer = Outputer(deal_data, not_deal_data)
|
||||
outputer.visualize_priority()
|
||||
outputer.save_key2counter_excel()
|
||||
Reference in New Issue
Block a user