He builds tools (both computational and cognitive) that make data science easier, faster, and more fun. His work includes packages for data science (ggplot2, dplyr, tidyr), data ingest (readr, readxl, haven), and principled software development (roxygen2, testthat, devtools). He is also ...
本期推荐的书籍是hadley大神《R for Data Science》的中文翻译版《R数据科学》,Panda姐五星强烈推荐!!! 这本书原版就是开源的(网址:http://r4ds.had.co.nz/),但是中文看得更快,学R语言一定要买一本纸质书放在案头,多多翻阅。 R for Data Science 关于这本书 这本书将教我们如何用R来做数据科学:学习如何...
后面就没有继续写了,不太习惯做读书笔记,个人喜欢写那种带着问题的探索性笔记。 【R】《R for Data Science》学习笔记-先导篇:http://shemy.site/2017/11/19/R-for-Data-Science-introduction/ 【R】《R for Data Science》学习笔记-数据探索篇:http://shemy.site/2017/11/23/R-for-Data-Science-data-...
我们自己是无法实现数据处理。 因此,在后面的学习中,我会逐渐分享数据前期处理。一方面是自己的学习笔记,另一方面是我们大家一起学习,也是相互学习的过程哦!! -- 今天分享一本书籍《R for Data Science》中文《R数据科学》,后期的学习也是主要依据这本书。 如何获得此书籍资料:公众号回复关键词:20230112 --- 前言...
本文主要翻译R for Data Science这本书的第三章,可视化(ggplot2)部分内容。翻译原文在这里:R for Data Science,其中3.1节到3.2节为手工翻译,后面的为谷歌翻译加人工修改,自己翻译打字一方面有些慢,另一方面有工具不用干嘛。不过自己翻译起来,怎么都觉得不通顺,但是谷歌翻译虽然有一点点小问题,但是也省了很多的精力...
ggplot(data=mpg)+geom_point(mapping=aes(x=displ,y=hwy,size=class))#>Warning:Using sizefora discrete variable is not advised. 可以看到这种图是很难区分各种汽车类型的,而且运行这个代码时,也有消息提醒不推荐使用点的大小来表示离散变量。其实这种美学映射在生信中用的很多,例如单细胞分析包Seurat的DotPlot...
ggplot(data = mpg) + geom_point(mapping = aes(x = displ, y = hwy)) + geom_smooth(mapping = aes(x = displ, y = hwy))但是,这样代码就产生了一些重复。假如你想将 y 轴上的变量从 hwy 改成 cty,那么就要在两个地方修改这个变量,但你或许会漏掉一处。避免这种重复的方法是将一组映射...
当当天津木悠图书专营店在线销售正版《R数据科学:第2版=R for Data Science,2nd Edition: 英文》。最新《R数据科学:第2版=R for Data Science,2nd Edition: 英文》简介、书评、试读、价格、图片等相关信息,尽在DangDang.com,网购《R数据科学:第2版=R for Data Science,2nd
Data science is an exciting discipline that allows you to turn raw data into understanding, insight, and knowledge. The goal of “R for Data Science” is to help you learn the most important tools in R that will allow you to do data science. After reading this book, you’ll have the ...
翻译:《R for Data Science》第三章1.2节 数据可视化(ggplot2) 作者:Garrett Grolemund 、Hadley Wickham 书籍的电子版:R for Data Science 3 Data visualisation数据可视化 3.1 介绍 “The simple graph has brought more information to the data analyst’s mind than any other device.”— John Tukey ...