數據科學:R語言實現(影印版 英文版) [R for Data Science]

數據科學:R語言實現(影印版 英文版) [R for Data Science] 下載 mobi epub pdf 電子書 2024


簡體網頁||繁體網頁
Hadley,Wickham,Garrett,Grolemund 著



點擊這裡下載
    


想要找書就要到 圖書大百科
立刻按 ctrl+D收藏本頁
你會得到大驚喜!!

發表於2024-05-28

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

圖書介紹

齣版社: 東南大學齣版社
ISBN:9787564173531
版次:1
商品編碼:12245094
包裝:平裝
外文名稱:R for Data Science
開本:16開
齣版時間:2017-10-01
用紙:膠版紙
頁數:492
字數:566000
正文語種:英文


相關圖書





圖書描述

編輯推薦

學習如何利用R語言洞察、知曉、理解原始數據。本書介紹瞭R、RStudio以及tidyverse,後者是一組相互配閤工作的R包,能夠使數據科學更快速、流暢、富有樂趣。本書旨在幫助你盡快地上手數據科學相關的工作,並不要求讀者先前具備編程經驗。
作者Hadley Wickham和Garrett Grolemund將一步步指導你對數據進行導入、提煉、探索以及建模並發布成果。除瞭處理數據所需的基本工具,你還將會對數據科學的周期擁有一個完整的、宏觀的理解。

內容簡介

  學習如何利用R語言洞察、知曉、理解原始數據。
  《數據科學:R語言實現(影印版 英文版)》介紹瞭R、RStudio以及tidyverse,後者是一組相互配閤工作的R包,能夠使數據科學快速、流暢、富有樂趣。
  《數據科學:R語言實現(影印版 英文版)》旨在幫助你盡快地上手數據科學相關的工作,並不要求讀者具備編程經驗。
  《數據科學:R語言實現(影印版 英文版)》Hadley Wickham和Garrett Grolernund將一步步指導你對數據進行導入、提煉、探索以及建模並發布成果。除瞭處理數據所需的基本工具,你還將會對數據科學的周期擁有一個完整的、宏觀的理解。

作者簡介

Hadley Wickham是RStudio的首席科學傢以及R基金會成員。他構建瞭一套使數據科學變得更加快捷、富有樂趣的工具。可以通過其個人網站瞭解更多的信息:http://hadley.nz。

Garrett Grolemund是一名統計學傢、教師以及RStudio的碩士生導師。他還是《Hands-On Programming with R 》(O'Reilly)一書的作者。Garrett的很多授課視頻可以在oreilly.com/safari上找到。

內頁插圖

精彩書評

“Hadley Wickham是數據科學領域的一位傳奇人物,他創造齣瞭一套之前無人想到過的進行數據分析的全新方法。他這本和Garrett Grolemund閤著的新書用代碼展示瞭這種新奇的方法,本書可謂是數據分析方麵的聖經。” —— Roger D.Peng (約翰?霍普金斯大學布隆博格公共衛生學院生物統計學教授)

目錄

Preface

Part I. Explore
1. Data Visualization with ggplot2
Introduction
First Steps
Aesthetic Mappings
Common Problems
Facets
Geometric Objects
Statistical Transformations
Position Adjustments
Coordinate Systems
The Layered Grammar of Graphics
2. Workflow: Basics
Coding Basics
What's in a Name?
Calling Functions
3. Data Transformation with dplyr
Introduction
Filter Rows with filter()
Arrange Rows with arrange()
Select Columns with select()
Add New Variables with mutate()
Grouped Summaries with summarize()
Grouped Mutates (and Filters)
4. W0rkfl0w: Scripts
Running Code
RStudio Diagnostics
5. Exploratory Data Analysis
Introduction
Questions
Variation
Missing Values
Covariation
Patterns and Models
ggplot2 Calls
Learning More
6. Workflow: Projects
What Is Real?
Where Does Your Analysis Live?
Paths and Directories
RStudio Projects
Summary

Part II. Wrangle
7. Tibbles with tibble
Introduction
Creating Tibbles
Tibbles Versus data.frame
Interacting with Older Code
8. Data Import with readr
Introduction
Getting Started
Parsing a Vector
Parsing a File
Writing to a File
Other Types of Data
9. Tidy Data with tidyr
Introduction
Tidy Data
Spreading and Gathering
Separating and Pull
Missing Values
Case Study
Nontidy Data
10. Relational Data with dplyr
Introduction
nycflightsl3
Keys
Mutating loins
Filtering loins
loin Problems
Set Operations
11. Strings with stringr
Introduction
String Basics
Matching Patterns with Regular Expressions
Tools
Other Types of Pattern
Other Uses of Regular Expressions
stringi
12. Factors with forcats
Introduction
Creating Factors
General Social Survey
Modifying Factor Order
Modifying Factor Levels
13. Dates and Times with lubridate
Introduction
Creating Date/Times
Date-Time Components
Time Spans
Time Zones

Part III. Program
14. Pipeswith magrittr
Introduction
Piping Alternatives
When Not to Use the Pipe
Other Tools from magrittr
15. Functions
Introduction
When Should You Write a Function?
Functions Are for Humans and Computers
Conditional Execution
Function Arguments
Return Values
Environment
16. Vectors
Introduction
Vector Basics
Important Types of Atomic Vector
Using Atomic Vectors
Recursive Vectors (Lists)
Attributes
Augmented Vectors
17. Iteration with purrr
Introduction
For Loops
For Loop Variations
For Loops Versus Functionals
The Map Functions
Dealing with Failure
Mapping over Multiple Arguments
Walk
Other Patterns of For Loops

Part IV. Model
18. Model Basics with modelr
Introduction
A Simple Model
Visualizing Models
Formulas and Model Families
Missing Values
Other Model Families
19. Model Building
Introduction
Why Are Low-Quality Diamonds More Expensive?
What Affects the Number of Daily Flights?
Learning More About Models
20. Many Models with purrr and broom
Introduction
gapminder
List-Columns
Creating List-Columns
Simplifying List-Columns
Making Tidy Data with broom

Part V. Communicate
21. R Markdown
Introduction
R Markdown Basics
Text Formatting with Markdown
Code Chunks
Troubleshooting
YAML Header
Learning More
22. Graphics for Communication with ggplot2
Introduction
Label
Annotations
Scales
Zooming
Themes
Saving Your Plots
Learning More
23. R Markdown Formats
Introduction
Output Options
Documents
Notebooks
Presentations
Dashboards
Interactivity
Websites
Other Formats
Learning More
24. R Markdown Workflow
Index


數據科學:R語言實現(影印版 英文版) [R for Data Science] 下載 mobi epub pdf txt 電子書 格式

數據科學:R語言實現(影印版 英文版) [R for Data Science] mobi 下載 pdf 下載 pub 下載 txt 電子書 下載 2024

數據科學:R語言實現(影印版 英文版) [R for Data Science] 下載 mobi pdf epub txt 電子書 格式 2024

數據科學:R語言實現(影印版 英文版) [R for Data Science] 下載 mobi epub pdf 電子書
想要找書就要到 圖書大百科
立刻按 ctrl+D收藏本頁
你會得到大驚喜!!

用戶評價

評分

幫老公買的,包裝不錯,送貨速度快

評分

買來看不下去,全是英文,要多花時間纔行啊

評分

很多大牛推薦的一本書,好好看看

評分

這本書很好,還沒有認真看

評分

美國亞馬遜排行很高,就是外語水平太爛,看著吃力,沒看幾頁。

評分

還是英文版看著舒服。

評分

正是我所需要的,要努力學習纔行,想創建好的應用,加油加油(? •?_•?)?

評分

不錯的入門書籍 好好學習

評分

紙質還是很不錯的,內容也很好

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

數據科學:R語言實現(影印版 英文版) [R for Data Science] mobi epub pdf txt 電子書 格式下載 2024


分享鏈接




相關圖書


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

友情鏈接

© 2024 book.qciss.net All Rights Reserved. 圖書大百科 版權所有