fix script 4

This commit is contained in:
Sheaza 2024-03-26 18:41:21 +01:00
parent 64a9fbfc99
commit 2c085e5512
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ kaggle datasets download -d nikhil7280/student-performance-multiple-linear-regre
mv Student_Performance.csv data.csv
# cut off rows
head -n "$2" data.csv > data.csv.tmp && mv data.csv.tmp data.csv
head -n $2 data.csv > data.csv.tmp && mv data.csv.tmp data.csv
# get data size
data_size=$(wc -l < data.csv)