官术网_书友最值得收藏!

深入淺出Pandas:利用Python進行數據處理與分析
會員

如果你想充分發揮Python的強大作用,如果你想成為一名好的Python工程師,你應該先學好Pandas。這是一本全面覆蓋了Pandas使用者的普遍需求和痛點的著作,基于實用、易學的原則,從功能、使用、原理等多個維度對Pandas做了全方位的詳細講解,既是初學者系統學習Pandas難得的入門書,又是有經驗的Python工程師案頭必不可少的查詢手冊。本書共17章,分為七部分。1部分(1~2章)Pandas入門:首先介紹了Pandas的功能、使用場景和學習方法,然后詳細講解了Python開發環境的搭建,Z后介紹了Pandas的大量基礎功能,旨在引領讀者快速入門。二部分(3~5章)Pandas數據分析基礎:詳細講解了Pandas讀取與輸出數據、索引作、數據類型轉換、查詢篩選、統計計算、排序、位移、數據修改、數據迭代、函數應用等內容。三部分(6~9章)數據形式變化:講解了Pandas的分組聚合作、合并作、對比作、數據透視、轉置、歸一化、標準化等,以及如何利用多層索引對數據進行升降維。部分(10~12章)數據清洗:講解了缺失值和重復值的識別、刪除、填充,數據的替換、格式轉換,文本的提取、連接、匹配、切分、替換、格式化、虛擬變量化等,以及分類數據的應用場景和作方法。五部分(13~14章)時序數據分析:講解了Pandas中對于各種時間類型數據的處理和分析,以及在時序數據處理中經常使用的窗口計算。六部分(15~16章)可視化:講解了Pandas的樣式功能如何讓數據表格更有表現力,以及Pandas的繪圖功能如何讓數據自己說話。七部分(17章)實戰案例:介紹了從需求到代碼的思考過程,如何利用鏈式編程思想提高代碼編寫和數據分析效率,以及數據分析的基本方法與需要掌握的數據分析工具和技術棧,此外還從數據處理和數據分析兩個角度給出了大量的應用案例及代碼詳解。

李慶輝 ·操作系統 ·13.5萬字

The Infinite Retina
會員

AcompellingandinsightfullookatthefutureofSpatialComputing,andhowthiscutting-edgetechnologyischangingthewaywedobusinessacrosssevenprimaryindustries,andwhatitmeansforhumanityasawhole.KeyFeatures*DiscoverhowSpatialComputingischangingthefaceoftechnology*GetaroadmapforthedisruptionscausedbySpatialComputingandhowitwillaffectsevenmajorindustries*Gaininsightsaboutthepast,present,andfutureoftechnologyfromtheworld’sleadingexpertsandinnovatorsBookDescriptionWhatisSpatialComputingandwhyiseveryonefromTesla,Apple,andFacebookinvestingheavilyinit?InTheInfiniteRetina,authorsIrenaCroninandRobertScobleattempttoanswerthatquestionbyhelpingyouunderstandwhereSpatialComputing―anaugmentedrealitywherehumansandmachinescaninteractinaphysicalspace―camefrom,whereit'sgoing,andwhyit'ssofundamentallydifferentfromthecomputersormobilephonesthatcamebefore.TheypresentsevenvisionsofthefutureandtheindustryverticalsinwhichSpatialComputinghasthemostinfluence―Transportation;Technology,Media,andTelecommunications;Manufacturing;Retail;Healthcare;Finance;andEducation.Thebookalsosharesinsightsaboutthepast,present,andfuturefromleadingexpertsanotherindustryveteransandinnovators,includingSebastianThrun,KenBretschneider,andHugoSwart.TheydiveintowhattheythinkwillhappeninSpatialComputinginthenearandmediumterm,andalsoexplorewhatitcouldmeanforhumanityinthelongterm.TheInfiniteRetinathenleavesituptoyoutodecidewhetherSpatialComputingistrulywherethefutureoftechnologyisheadingorwhetherit'sjustanexciting,butpassing,phase.Whatyouwilllearn*Lookbackathistoricalparadigmsthatchangedthefaceoftechnology*ConsiderhowSpatialComputingcouldbethenewtechnologythatchangesourlives*SeehowVirtualandAugmentedRealitywillchangethewaywedohealthcare*LearnhowSpatialComputingtechnologywillleadtofullyautomatedtransportation*ThinkabouthowSpatialComputingwillchangethemanufacturingindustry*ExplorehowfinanceandretailaregoingtobeimpactedthroughSpatialComputingdevices*HearaccountsfromindustryexpertsonwhattheyexpectSpatialComputingtobringtotheirsectorsWhothisbookisforTheInfiniteRetinaisforanyoneinterestedinthefutureoftechnologyandhowAugmentedRealityandSpatialComputing(amongotherdevelopments)willaffectbothbusinessesandtheindividual.

Irena Cronin;Robert Scoble;Steve Wozniak ·操作系統 ·13.4萬字

嵌入式微系統
會員

隨著高頻感應加熱電源的深入,涉及高速信號例行處理(10k/s),這個時候被迫放棄MCU51而遷移到CortexM3平臺,于是基于NXP的LPC1343把MS3升級為MS4,除了保留原來的功能外,主要引入了函數指針做界面設計,對于簡單的項目來說,比較容易實現。此外,根據項目需求把系統節拍按需求細分為10k/s、1k/s、100/s、10/s,緊急響應采用中斷,I/O狀態檢測、高速執行用10k/s,水壓、數碼管掃描顯示之類的用1k/s,按鍵掃描用100/s,LCD屏、數碼管數據顯示用10/s。這樣處理可以很好地把低速節拍分散到高速系統節拍中,不堆積在一個節拍中執行,避免單個系統節拍占用時間過長的問題。外部采樣檢測,一般不建議用中斷,盡可能用掃描方式的原因是:一是沒有這么多中斷口;二是中斷容易因為毛刺,導致多次中斷無法識別;三是可以采用濾波處理提高抗干擾能力。高頻感應加熱電源曾經一度想上RTOS實現實時響應,但遭到大家反對,因為那個時候我們對RTOS都不太熟悉,雖然有所了解,但沒有真正深入,尤其是實時這個概念都不是很清晰,所以認為深入分析透徹項目需求才是出路,后來準確分析項目需求后,提出了系統節拍的速度分級,很好地解決了實時性問題,系統穩定可靠。

王紹偉 鄭德智 吳玉勇 ·操作系統 ·13.2萬字

QQ閱讀手機版

主站蜘蛛池模板: 手游| 五大连池市| 镇赉县| 普定县| 开封县| 射洪县| 高阳县| 呼玛县| 开化县| 蒙城县| 德保县| 安仁县| 丹江口市| 遂溪县| 延吉市| 古丈县| 张家界市| 大足县| 怀柔区| 娄烦县| 台东市| 扎囊县| 永福县| 项城市| 洞头县| 昌平区| 资阳市| 高邮市| 平山县| 井研县| 亚东县| 曲沃县| 简阳市| 栾川县| 景宁| 甘孜县| 寿阳县| 清丰县| 云南省| 奇台县| 绍兴市|