diff --git a/stats.sh b/stats.sh index 219bcde..04fbd72 100644 --- a/stats.sh +++ b/stats.sh @@ -6,7 +6,7 @@ wc -l < data/creditcard_shuf.csv > stats.txt wc -l < data/creditcard_train.csv > stats_train.txt wc -l < data/creditcard_test.csv > stats_test.txt -# Create a directory for the data -mkdir -p data -# Move the statistics to the data directory -mv stats.txt stats_train.txt stats_test.txt data/ \ No newline at end of file +# Create a directory for the statistics +mkdir -p stats +# Move the statistics to the stats directory +mv stats.txt stats_train.txt stats_test.txt stats/ \ No newline at end of file