[Tutor] Does Python and its standard libraries use semantic versioning?

2018-02-09 Thread boB Stepp
I have been reading the interesting web page "Semantic Versioning 2.0.0" at https://semver.org/ I like how its use can supposedly make "dependency hell" a thing of the past. So I am wondering if Python and its standard libraries make use of semantic versioning as described in this article? But I

[Tutor] Creating a DataFrame from excel file

2018-02-09 Thread Naren via Tutor
Creating a data frame from excel. pd.read_csv(path, index_col=0,parse_dates=True). example: df = pd.read_csv('small_data/fha_by_tract.csv', names=names) df.head() Best Regards - Naren > On Feb 9, 2018, at 9:00 AM, tutor-requ...@python.org wrote: > > Send Tutor mailing list submissions to >

Re: [Tutor] Creating a DataFrame from excel file

2018-02-09 Thread Mark Lawrence
On 08/02/18 21:23, Charlotte Hoff Sonne wrote: I wish to create a very large data frame with pandas. So far, I have learned how to create data frames by manually entering the values I want in my data frame. However, now I have a large dataset from excel that I want to get imported as a data fr

[Tutor] Creating a DataFrame from excel file

2018-02-09 Thread Charlotte Hoff Sonne
I wish to create a very large data frame with pandas. So far, I have learned how to create data frames by manually entering the values I want in my data frame. However, now I have a large dataset from excel that I want to get imported as a data frame in jupyter notebook. Initially i wrote the fo