From my lab

master
sanginnwoo 2022-10-26 22:57:53 +09:00
parent d0c229a782
commit 831538a20d
4 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
<module type="PYTHON_MODULE" version="4"> <module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager"> <component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" /> <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" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>
</module> </module>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <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> </project>

View File

@ -49,5 +49,5 @@ for input_file in input_files:
return_values[4], return_values[5]] return_values[4], return_values[5]]
# 에러 파일을 출력 # 에러 파일을 출력
df_overall.to_csv(output_error + '/error_overall.csv') df_overall.to_csv('error_overall.csv')
df_multi_step.to_csv(output_error + 'error_multi_step.csv') df_multi_step.to_csv('error_multi_step.csv')

View File

@ -155,7 +155,7 @@ plt.savefig('error_analysis/error_overall.png', bbox_inches='tight')
''' '''
# CSV 파일 읽기 (다단 성토만) # 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 초기화 # 통계량 저장소 statistics 초기화
statistic_step =[] statistic_step =[]