Data Science from Scratch

Data Science from Scratch pdf epub mobi txt 电子书 下载 2025

出版者:O'Reilly Media
作者:Joel Grus
出品人:
页数:330
译者:
出版时间:2015-4-28
价格:USD 39.99
装帧:Paperback
isbn号码:9781491901427
丛书系列:
图书标签:
  • Python
  • DataScience
  • 机器学习
  • 数据科学
  • Programming
  • 统计学习
  • 计算机
  • 数学/统计/数据
  • 数据科学
  • Python
  • 机器学习
  • 统计学
  • 数据分析
  • 算法
  • 编程
  • 数据挖掘
  • 从零开始
  • 实战
想要找书就要到 小美书屋
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

具体描述

Data science libraries, frameworks, modules, and toolkits are great for doing data science, but they’re also a good way to dive into the discipline without actually understanding data science. In this book, you’ll learn how many of the most fundamental data science tools and algorithms work by implementing them from scratch.

If you have an aptitude for mathematics and some programming skills, author Joel Grus will help you get comfortable with the math and statistics at the core of data science, and with hacking skills you need to get started as a data scientist. Today’s messy glut of data holds answers to questions no one’s even thought to ask. This book provides you with the know-how to dig those answers out.

Get a crash course in Python

Learn the basics of linear algebra, statistics, and probability—and understand how and when they're used in data science

Collect, explore, clean, munge, and manipulate data

Dive into the fundamentals of machine learning

Implement models such as k-nearest Neighbors, Naive Bayes, linear and logistic regression, decision trees, neural networks, and clustering

Explore recommender systems, natural language processing, network analysis, MapReduce, and databases

作者简介

Joel Grus

Joel Grus is a software engineer at Google. Before that he worked as a data scientist at multiple startups. He lives in Seattle, where he regularly attends data science happy hours. He blogs infrequently at joelgrus.com.

View Joel Grus's full profile page.

目录信息

Chapter 1Introduction
The Ascendance of Data
What Is Data Science?
Motivating Hypothetical: DataSciencester
Chapter 2A Crash Course in Python
The Basics
The Not-So-Basics
For Further Exploration
Chapter 3Visualizing Data
matplotlib
Bar Charts
Line Charts
Scatterplots
For Further Exploration
Chapter 4Linear Algebra
Vectors
Matrices
For Further Exploration
Chapter 5Statistics
Describing a Single Set of Data
Correlation
Simpson’s Paradox
Some Other Correlational Caveats
Correlation and Causation
For Further Exploration
Chapter 6Probability
Dependence and Independence
Conditional Probability
Bayes’s Theorem
Random Variables
Continuous Distributions
The Normal Distribution
The Central Limit Theorem
For Further Exploration
Chapter 7Hypothesis and Inference
Statistical Hypothesis Testing
Example: Flipping a Coin
Confidence Intervals
P-hacking
Example: Running an A/B Test
Bayesian Inference
For Further Exploration
Chapter 8Gradient Descent
The Idea Behind Gradient Descent
Estimating the Gradient
Using the Gradient
Choosing the Right Step Size
Putting It All Together
Stochastic Gradient Descent
For Further Exploration
Chapter 9Getting Data
stdin and stdout
Reading Files
Scraping the Web
Using APIs
Example: Using the Twitter APIs
For Further Exploration
Chapter 10Working with Data
Exploring Your Data
Cleaning and Munging
Manipulating Data
Rescaling
Dimensionality Reduction
For Further Exploration
Chapter 11Machine Learning
Modeling
What Is Machine Learning?
Overfitting and Underfitting
Correctness
The Bias-Variance Trade-off
Feature Extraction and Selection
For Further Exploration
Chapter 12k-Nearest Neighbors
The Model
Example: Favorite Languages
The Curse of Dimensionality
For Further Exploration
Chapter 13Naive Bayes
A Really Dumb Spam Filter
A More Sophisticated Spam Filter
Implementation
Testing Our Model
For Further Exploration
Chapter 14Simple Linear Regression
The Model
Using Gradient Descent
Maximum Likelihood Estimation
For Further Exploration
Chapter 15Multiple Regression
The Model
Further Assumptions of the Least Squares Model
Fitting the Model
Interpreting the Model
Goodness of Fit
Digression: The Bootstrap
Standard Errors of Regression Coefficients
Regularization
For Further Exploration
Chapter 16Logistic Regression
The Problem
The Logistic Function
Applying the Model
Goodness of Fit
Support Vector Machines
For Further Investigation
Chapter 17Decision Trees
What Is a Decision Tree?
Entropy
The Entropy of a Partition
Creating a Decision Tree
Putting It All Together
Random Forests
For Further Exploration
Chapter 18Neural Networks
Perceptrons
Feed-Forward Neural Networks
Backpropagation
Example: Defeating a CAPTCHA
For Further Exploration
Chapter 19Clustering
The Idea
The Model
Example: Meetups
Choosing k
Example: Clustering Colors
Bottom-up Hierarchical Clustering
For Further Exploration
Chapter 20Natural Language Processing
Word Clouds
n-gram Models
Grammars
An Aside: Gibbs Sampling
Topic Modeling
For Further Exploration
Chapter 21Network Analysis
Betweenness Centrality
Eigenvector Centrality
Directed Graphs and PageRank
For Further Exploration
Chapter 22Recommender Systems
Manual Curation
Recommending What’s Popular
User-Based Collaborative Filtering
Item-Based Collaborative Filtering
For Further Exploration
Chapter 23Databases and SQL
CREATE TABLE and INSERT
UPDATE
DELETE
SELECT
GROUP BY
ORDER BY
JOIN
Subqueries
Indexes
Query Optimization
NoSQL
For Further Exploration
Chapter 24MapReduce
Example: Word Count
Why MapReduce?
MapReduce More Generally
Example: Analyzing Status Updates
Example: Matrix Multiplication
An Aside: Combiners
For Further Exploration
Chapter 25Go Forth and Do Data Science
IPython
Mathematics
Not from Scratch
Find Data
Do Data Science
· · · · · · (收起)

读后感

评分

数据科学是一个蓬勃发展、前途无限的行业,有人将数据科学家称为“21世纪头号性感职业”。本书从零开始讲解数据科学工作,教授数据科学工作所必需的黑客技能,并带领读者熟悉数据科学的核心知识——数学和统计学。 作者选择了功能强大、简单易学的Python语言环境,亲手搭建工具...

评分

数据科学是一个蓬勃发展、前途无限的行业,有人将数据科学家称为“21世纪头号性感职业”。本书从零开始讲解数据科学工作,教授数据科学工作所必需的黑客技能,并带领读者熟悉数据科学的核心知识——数学和统计学。 作者选择了功能强大、简单易学的Python语言环境,亲手搭建工具...

评分

说是数据科学指路到是差不多。告诉你有哪些方面的知识需要去学习的。25章每章都值得单独去借上一两本书去学习,都值得花上一两个月用上N多个案例来实践,这样之后,我觉得才是真的入门了。 书中的代码又是一段一段的,估计只有作者才会知道这个功能是怎么来的,有什么用。后面...  

评分

这本书可以作为 Data Science 101 ,只是一本基于 Python 学习 Data Science 的指南,我觉得里面最有价值的就是 For Further Exploration 部分了。  

评分

书名叫《数据科学入门》,可实际上却并不适合零基础的人读,需要有一定的基础(包括python基础和数学基础)。我觉得称之为“指南”更合适。 —————————— 当初为什么买这本书? 有段时间对数据异常着迷,只要和数据有关的数都不管三七二十一加到购物车,发工资了就买。...  

用户评价

评分

只读了 ch. 24 MapReduce, 代码写得很 pythonic 好评

评分

粗粗翻了一下,基本是讲Python在数据科学各个方面的应用,比较基础。有空跑一下代码(作者已经在着手写第二版了)

评分

感觉这本书更适合想要自己写数据分析应用的程序员看

评分

觉得是很不错的入门书,内容都是基础中的基础。分类的思路很好

评分

各方面都讲了一点 也不是很深

本站所有内容均为互联网搜索引擎提供的公开搜索信息,本站不存储任何数据与内容,任何内容与数据均与本站无关,如有需要请联系相关搜索引擎包括但不限于百度google,bing,sogou

© 2025 book.quotespace.org All Rights Reserved. 小美书屋 版权所有