diff --git a/.idea/SettlementPredictionCode_Step.iml b/.idea/SettlementPredictionCode_Step.iml
index dba70b9..3020696 100644
--- a/.idea/SettlementPredictionCode_Step.iml
+++ b/.idea/SettlementPredictionCode_Step.iml
@@ -2,7 +2,7 @@
-
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index 7cdffb5..330b8f6 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,4 +1,4 @@
-
+
\ No newline at end of file
diff --git a/batch_process.py b/batch_process.py
index 666147d..8a1fde9 100644
--- a/batch_process.py
+++ b/batch_process.py
@@ -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')
diff --git a/error_analysis.py b/error_analysis.py
index 12c3a53..562a622 100644
--- a/error_analysis.py
+++ b/error_analysis.py
@@ -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 =[]