14 lines
517 B
Text
14 lines
517 B
Text
$ # with the >| redirection we are replacing existing contents in the file
|
|
$ cat << EOT >| README.md
|
|
|
|
# Midterm YODA Data Analysis Project
|
|
|
|
## Dataset structure
|
|
|
|
- All inputs (i.e. building blocks from other sources) are located in input/.
|
|
- All custom code is located in code/.
|
|
- All results (i.e., generated files) are located in the root of the dataset:
|
|
- "prediction_report.csv" contains the main classification metrics.
|
|
- "output/pairwise_relationships.png" is a plot of the relations between features.
|
|
|
|
EOT
|