8 lines
238 B
Bash
8 lines
238 B
Bash
#!/bin/sh
|
|
kaggle datasets download -d akash14/house-price-dataset
|
|
unzip -o house-price-dataset.zip
|
|
echo $CUTOFF
|
|
|
|
head -n $CUTOFF ./Participants_Data_HPP/Train.csv > data.txt
|
|
head -n $CUTOFF ./Participants_Data_HPP/Test.csv > dataTest.txt
|