欢迎来到天天文库
浏览记录
ID:7286060
大小:557.43 KB
页数:34页
时间:2018-02-10
《python data analysis pandas primer》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、pandasPrimerpandasisnamedafterpaneldata(aneconometricterm)andPythondataanalysis,andisapopularopensourcePythonproject.Thischapterisatutorialonbasicpandasfunctionalities,wherewewilllearnaboutpandasdatastructuresandoperations.Theofficialpandasdocumentationinsistsonnamingtheprojectpandasinalllowerca
2、seletters.Theotherconventiontheyinsistonisthisimportstatement:importpandasaspd.Wewilltrytofollowtheseconventionsasmuchaspossible.Inthischapter,wewillinstallandexplorepandas.Then,wewillacquaintourselveswiththetwocentralpandasdatastructures:DataFrameandSeries.Afterthis,youwilllearnhowtoperformSQL-
3、likeoperationsonthedatacontainedinthesedatastructures.pandashasstatisticalutilitiesincludingtime-seriesroutines,someofwhichwillbedemonstrated.Thetopicswewillpursueareasfollows:•Installingandexploringpandas•DataFrameandSeriesdatastructures•Queryingdatainpandas•StatisticswithpandasDataFrames•Dataa
4、ggregationwithpandasDataFrames•Concatenating,joining,andappendingDataFrames•Handlingmissingvalues•Dealingwithdates•Pivottables•RemotedataaccesspandasPrimerInstallingandexploringpandasTheminimaldependencysetrequirementsforpandasisgivenasfollows:•NumPy:Thisisthefundamentalnumericalarraypackagethat
5、weinstalledandcoveredextensivelyintheprecedingchapters•python-dateutil:Thisisadate-handlinglibrary•pytz:ThishandlestimezonedefinitionsThislististhebareminimum;alongerlistofoptionaldependenciescanbelocatedathttp://pandas.pydata.org/pandas-docs/stable/install.html.WecaninstallpandasviaPyPIwithpipo
6、reasy_install,usingabinaryinstaller,withtheaidofouroperatingsystempackagemanager,orfromthesourcebycheckingoutthecode.Thebinaryinstallerscanbedownloadedfromhttp://pandas.pydata.org/getpandas.html.Thecommandtoinstallpandaswithpipisasfollows:$pipinstallpandasYoumayhavetoprependtheprecedingcommandwi
7、thsudoifyouruseraccountdoesn'thavesufficientrights.Formost,ifnotall,Linuxdistributions,thepandaspackagenameispython-pandas.Pleaserefertothemanualpagesofyourpackagemanagerforthecorrectcommandtoinstall.Thesecommandsshouldbethe
此文档下载收益归作者所有