-
-
Notifications
You must be signed in to change notification settings - Fork 381
Add short tutorial about extracting info from Excel files #210
Comments
This would be a fun one. There's a lot of rich interaction with spreadsheets and other data sources using everything from NumPy to Pandas to the Excel modules you mention to even core Python. Sometimes I think our directory structure limits how we think about lessons, because this seems like a "data" "beginner" "Python" thing, but I wouldn't know where to put it so that it was obvious to somebody looking for a lesson on this sort of thing. |
I do have a lesson on pandas, touching on Excel: |
I did my instruction training screencast on how to convert from excel to csv files using pandas. Maybe that helps? The video is here: https://vimeo.com/74873085 |
We should do this for each language we support (Python and R right now, MATLAB to come...) |
Jonathan Frederic and I will try our hand at this in both Python and R! |
I'd like to add myself and Jonathan as assignees to this issue. |
I heard a ringing in my ear 😛 |
Following up an email discussion with @genevievekathleensmith , I thought it would be a good idea to solidify an outline of the course before creating it. @genevievekathleensmith made a nice concept map: Taking from the concept map to organize a chronological outline: Language specific
Applies to both R and Python tracks
Language specific
Bonus material, language specific
What do you guys think of this outline? Am I far from the general idea of this course, or does something like this make sense? Am I over complicating things by describing both how to load the entire contents into the memory and only parts as needed? |
Yay for the concept map! |
is the excel already in a 'dataset' format? meaning there aren't random bits of 'side calculations' somewhere on a sheet? I use the XLConnect package in R to read in excel data. Not sure if this will address the issue (at least for the R material) |
@jdfreder I made a stab at an R-based lesson. Let me know what you think (e.g. it is short on details, but meant to be covered in a short amount of time)! Thanks @chendaniely for the XLConnect suggestion! |
Lots of people have data in Excel; http://www.python-excel.org/ can read spreadsheets, and we can also show people the
csv
module.The text was updated successfully, but these errors were encountered: