Python數據處理(影印版 英文版) pdf epub mobi txt 電子書 下載 2024

圖書介紹


Python數據處理(影印版 英文版)


[美] 傑奎琳·卡茲奧,凱瑟琳·嘉穆 著



點擊這裡下載
    


想要找書就要到 求知書站
立刻按 ctrl+D收藏本頁
你會得到大驚喜!!

发表于2024-05-11

類似圖書 點擊查看全場最低價

齣版社: 東南大學齣版社
ISBN:9787564170035
版次:1
商品編碼:12052873
包裝:平裝
開本:16開
齣版時間:2017-02-01
用紙:膠版紙
頁數:488
字數:622000
正文語種:英文

Python數據處理(影印版 英文版) epub 下載 mobi 下載 pdf 下載 txt 電子書 下載 2024

相關圖書



Python數據處理(影印版 英文版) epub 下載 mobi 下載 pdf 下載 txt 電子書 下載 2024

Python數據處理(影印版 英文版) pdf epub mobi txt 電子書 下載 2024



具體描述

內容簡介

  《Python數據處理(影印版 英文版)》嚮非程序員展示瞭如何處理本質上太雜亂或難以下手的信息。你不需要瞭解Pvthon編程語言基礎知識就可以開始瞭。
  通過循序漸進的練習,你將學習如何有效地獲取、清理、分析和呈現數據。你還將瞭解如何將數據處理自動化,安排文件編輯和清理任務,處理*大的數據集,以及使用所獲取的數據講述引人注目的故事。
  快速學習基本的Python語法、數據類型和語言概念使用機器可讀和人類可用的數據抓取網站和API以查找大量有用的信息清理和格式化數據以消除數據集裏的重復和錯誤數據瞭解何時標準化數據以及何時測試和編寫腳本進行數據清理使用新的Python庫和技術探索並分析數據集使用Python解決方案自動化整個數據處理過程

目錄

Preface
1. Introduction to Python
Why Python
Getting Started with Python
Which Python Version
Setting Up Python on Your Machine
Test Driving Python
Install pip
Install a Code Editor
Optional: Install IPython
Summary

2. Python Basics
Basic Data Types
Strings
Integers and Floats
Data Containers
Variables
Lists
Dictionaries
What Can the Various Data Types Do?
String Methods: Things Strings Can Do
Numerical Methods: Things Numbers Can Do
List Methods: Things Lists Can Do
Dictionary Methods: Things Dictionaries Can Do
Helpful Tools: type, dir, and help
type
dir
help
Putting It All Together
What Does It All Mean?
Summary

3. Data Meant to Be Read by Machines
CSV Data
How to Import CSV Data
Saving the Code to a File; Running from Command Line
JSON Data
How to Import ]SON Data
XML Data
How to Import XML Data
Summary

4. Working with Excel Files
Installing Python Packages
Parsing Excel Files
Getting Started with Parsing
Summary

5. PDFs and Problem Solving in Python
Avoid Using PDFs!
Programmatic Approaches to PDF Parsing
Opening and Reading Using slate
Converting PDF to Text
Parsing PDFs Using pdfminer
Learning How to Solve Problems
Exercise: Use Table Extraction, Try a Different Library
Exercise: Clean the Data Manually
Exercise: Try Another Tool
Uncommon File Types
Summary

6. Acquiring and Storing Data
Not All Data Is Created Equal
Fact Checking
Readability, Cleanliness, and Longevity
Where to Find Data
Using a Telephone
US Government Data
Government and Civic Open Data Worldwide
Organization and Non-Government Organization (NGO) Data
Education and University Data
Medical and Scientific Data
Crowdsourced Data and APIs
Case Studies: Example Data Investigation
Ebola Crisis
Train Safety
Football Salaries
Child Labor
Storing Your Data: When, Why, and How?
Databases: A Brief Introduction
Relational Databases: MySQL and PostgreSQL
Non-Relational Databases: NoSQL
Setting Up Your Local Database with Python
When to Use a Simple File
Cloud-Storage and Python
Local Storage and Python
Alternative Data Storage
Summary

7. Data Cleanup: Investigation, Matching, and Formatting
Why Clean Data?
Data Cleanup Basics
Identifying Values for Data Cleanup
Formatting Data
Finding Outliers and Bad Data
Finding Duplicates
Fuzzy Matching
RegEx Matching
What to Do with Duplicate Records
Summary

8. Data Cleanup: Standardizing and Scripting
Normalizing and Standardizing Your Data
Saving Your Data
Determining What Data Cleanup Is Right for Your Project
Scripting Your Cleanup
Testing with New Data
Summary

9. Data Exploration and Analysis
Exploring Your Data
Importing Data
Exploring Table Functions
Joining Numerous Datasets
Identifying Correlations
Identifying Outliers
Creating Groupings
Further Exploration
Analyzing Your Data
Separating and Focusing Your Data
What Is Your Data Saying?
Drawing Conclusions
Documenting Your Conclusions
Summary

10. Presenting Your Data
Avoiding Storytelling Pitfalls
How Will You Tell the Story?
Know Your Audience
Visualizing Your Data
Charts
Time-Related Data
Maps
Interactives
Words
Images, Video, and Illustrations
Presentation Tools
Publishing Your Data
Using Available Sites
Open Source Platforms: Starting a New Site
Jupyter (Formerly Known as IPython Notebooks)
Summary

11. Web Scraping: Acquiring and Storing Data from the Web
What to Scrape and How
Analyzing a Web Page
Inspection: Markup Structure
Network/Timeline: How the Page Loads
Console: Interacting with JavaScript
In-Depth Analysis of a Page
Getting Pages: How to Request on the Internet
Reading a Web Page with Beautiful Soup
Reading a Web Page with LXML
A Case for XPath
Summary

12. Advanced Web Scraping: Screen Scrapers and Spiders
Browser-Based Parsing
Screen Reading with Selenium
Screen Reading with Ghost.Py
Spidering the Web
Building a Spider with Scrapy
Crawling Whole Websites with Scrapy
Networks: How the Internet Works and Why It's Breaking Your Script
The Changing Web (or Why Your Script Broke)
A (Few) Word(s) of Caution
Summary

13. APIs
API Features
REST Versus Streaming APIs
Rate Limits
Tiered Data Volumes
API Keys and Tokens
A Simple Data Pull from Twitter's REST API
Advanced Data Collection from Twitter's REST API
Advanced Data Collection from Twitter's Streaming API
Summary

14. Automation and Scaling
Why Automate?
Steps to Automate
What Could Go Wrong?
Where to Automate
Special Tools for Automation
Using Local Files, argv, and Config Files
Using the Cloud for Data Processing
Using Parallel Processing
Using Distributed Processing
Simple Automation
CronJobs
Web Interfaces
Jupyter Notebooks
Large-Scale Automation
Celery: Queue-Based Automation
Ansible: Operations Automation
Monitoring Your Automation
Python Logging
Adding Automated Messaging
Uploading and Other Reporting
Logging and Monitoring as a Service
No System Is Foolproof
Summary

15. Conclusion
Duties of a Data Wrangler
Beyond Data Wrangling
Become a Better Data Analyst
Become a Better Developer
Become a Better Visual Storyteller
Become a Better Systems Architect
Where Do You Go from Here?
A. Comparison of Languages Mentioned
B. Python Resources for Beginners
C. Learning the Command Line
D. Advanced Python Setup
E. Python Gotchas
F. IPython Hints
G. Using Amazon Web Services
Index
Python數據處理(影印版 英文版) 下載 mobi epub pdf txt 電子書
Python數據處理(影印版 英文版) pdf epub mobi txt 電子書 下載
想要找書就要到 求知書站
立刻按 ctrl+D收藏本頁
你會得到大驚喜!!

用戶評價

評分

書本身的質量不錯,內容對學習有很大的幫助!

評分

書是經典,還沒看,京東服務不錯。

評分

送貨快,趁活動趕緊囤,券不要那麼難搶就更好瞭

評分

Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)Python數據分析基礎(影印版 英文版)

評分

書不錯,比較滿意,挺好的。

評分

印刷很好 有一定的幫助

評分

雖然是影印版,但質量真的很棒,慢慢啃。

評分

書怎麼樣還沒看,不過現在書的紙張確實不如原來好瞭,另外這書遠沒有圖片上看起來厚實,比較薄的一本,這麼說來書漲價瞭啊

評分

對sklearn的整體框架講的比較清楚,是一本入門sklearn和機器學習的好書

類似圖書 點擊查看全場最低價

Python數據處理(影印版 英文版) pdf epub mobi txt 電子書 下載





相關圖書


本站所有內容均為互聯網搜索引擎提供的公開搜索信息,本站不存儲任何數據與內容,任何內容與數據均與本站無關,如有需要請聯繫相關搜索引擎包括但不限於百度google,bing,sogou

友情鏈接

© 2024 tushu.tinynews.org All Rights Reserved. 求知書站 版权所有