excel - getting started with processing data with python -
i have excel spreadsheet of 3 million cells. asked following question , liked answer saving spreadsheet csv , processing python:
solution perform lots of calculations on 3 million data points , make charts
- is there library can use read csv matrix or should write 1 myself?
- does python speak vba @ all?
- after done processing data, simple put in form of csv can open in excel viewing?
is there library can use read csv matrix or should write 1 myself?
the csv
module handles want.
does python speak vba @ all?
iron python might.
after done processing data, simple put in form of csv can open in excel viewing?
the csv
module handles want.
suggestion: read this: http://docs.python.org/library/csv.html
Comments
Post a Comment