Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
smilesun committed Oct 18, 2024
1 parent 8b73a81 commit fcb2f46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/reorganize_csv_with_repeated_headers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
input_file=$1

# Define the output CSV file
output_file="merged_data.csv"
output_file="{$1}_header_cleaned.csv"

# Check if the input file exists
if [ ! -f "$input_file" ]; then
Expand Down
4 changes: 2 additions & 2 deletions scripts/sh_benchmark_agg.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cat $1/rule_results/*.csv > temp_results.csv
sh reorganize_csv_with_repeated_headers.sh merged_data.csv
cat $1/rule_results/*.csv > temp_result.csv
sh reorganize_csv_with_repeated_headers.sh temp_result_header_cleaned.csv
mkdir -p temp_agg
python main_out.py --gen_plots merged_data.csv --outp_dir ./temp_agg

0 comments on commit fcb2f46

Please sign in to comment.