cherrypi / Science-Fair_2019

Vernal Pond graphing and data, as well as data analysis.
1 stars 0 forks source link

Transcribe data into electronic form #1

Closed VCF closed 5 years ago

VCF commented 5 years ago

You need to copy your data from your spiral pad into a text file

VCF commented 5 years ago

Your file looks good, at least at first blush. You're using a .txt file suffix, which is not wrong, but it's not the best one for a CSV file. You should change it to CSV. You want to rename it, which is generally mv, but instead of moving it only in the filesystem, you want git to know you're changing the name, too. So you want to use git mv instead.

VCF commented 5 years ago

Good! I thought there might be formatting problems with the file, but there are not! You may find when you work with tabular files that sometimes you forget to put all values in a row, or you accidentally put too many values. This can be a pain to track down, but fortunately you don't have to worry about that now.