Week 21 Summary

This week I continued working on the software development. I spent most of the time figuring out the error "new-line character seen in unquoted field - do you need to open the file in universal-newline mode?" when I tried to run the original eegsample.csv file with csvreader.py. I looked it up on StackOverflow and here was what I got:

http://stackoverflow.com/questions/17315635/csv-new-line-character-seen-in-unquoted-field-error
http://stackoverflow.com/questions/17770727/new-line-character-seen-in-unquoted-field
http://stackoverflow.com/questions/26102302/python-csv-read-error

I had tried a couple of ways but unfortunately none of them worked. I also tried to make up a new list by copying part of the data by hand and saving it as a .csv file, however the reader still failed:


Mr. H suggested me to write a code that reads in text first, and then we can incorporate the .csv reader later. I will dedicate my time in the next few classes to working on this problem with him, and hopefully we will get it done by the end of next week.

Comments