Notes, assignments, and code for NEUROBIO 735 (Spring 2024).
1/11 – 4/17:
Tuesday, Thursday
3:00 – 4:30
301 Bryan Research Building
This homework is a chance to practice what we’ve learned this week about modularity, refactoring, and analyzing point process data by reproducing a well-known result in systems neuroscience. For the first part of the homework, you’ll be reproducing the left half of Figure 9A in Roitman and Shadlen (2002). One of the nice things about this data set is that it’s publicly available online and well-documented here. You are free to use those data, but for purposes of the homework, I’m giving you a .csv
file that’s preprocessed to include only the data of interest (you should have received a Google Drive id in an email, or you can download here).
The goal of this assignment is to give you practice in building a small piece of an end-to-end analysis. Multiple strategies will work, but you will need to make decisions about what data to use, how to process it, and what operations need to be done to match those in the paper. I suggest you start small, perhaps by subsetting the data, and iteratively improving your code.
pandas.read_csv
. If the result is data
, you can call data.values()
to get a NumPy array. We’ll learn more about working with Pandas DataFrame
s next week.I do not expect: