12 lines
438 B
Bash
12 lines
438 B
Bash
#!/bin/bash
|
|
|
|
# Count the number of lines in the original dataset
|
|
wc -l < data/creditcard_shuf.csv > stats.txt
|
|
# Count the number of lines in the training and testing datasets
|
|
wc -l < data/creditcard_train.csv > stats_train.txt
|
|
wc -l < data/creditcard_test.csv > stats_test.txt
|
|
|
|
# Create a directory for the statistics
|
|
mkdir -p stats_data
|
|
# Move the statistics to the stats directory
|
|
mv stats.txt stats_train.txt stats_test.txt stats_data/ |