From my lab
parent
d0c229a782
commit
831538a20d
|
|
@ -2,7 +2,7 @@
|
|||
<module type="PYTHON_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="jdk" jdkName="Python 3.9 (settle_prediction)" jdkType="Python SDK" />
|
||||
<orderEntry type="jdk" jdkName="Python 3.8 (SettlementPrediction)" jdkType="Python SDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (settle_prediction)" project-jdk-type="Python SDK" />
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8 (SettlementPrediction)" project-jdk-type="Python SDK" />
|
||||
</project>
|
||||
|
|
@ -49,5 +49,5 @@ for input_file in input_files:
|
|||
return_values[4], return_values[5]]
|
||||
|
||||
# 에러 파일을 출력
|
||||
df_overall.to_csv(output_error + '/error_overall.csv')
|
||||
df_multi_step.to_csv(output_error + 'error_multi_step.csv')
|
||||
df_overall.to_csv('error_overall.csv')
|
||||
df_multi_step.to_csv('error_multi_step.csv')
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ plt.savefig('error_analysis/error_overall.png', bbox_inches='tight')
|
|||
'''
|
||||
|
||||
# CSV 파일 읽기 (다단 성토만)
|
||||
df_multi_step = pd.read_csv('Error_multi_step.csv', encoding='euc-kr')
|
||||
df_multi_step = pd.read_csv('error_multi_step.csv', encoding='euc-kr')
|
||||
|
||||
# 통계량 저장소 statistics 초기화
|
||||
statistic_step =[]
|
||||
|
|
|
|||
Loading…
Reference in New Issue