R_for_Data_Science icon indicating copy to clipboard operation
R_for_Data_Science copied to clipboard

Materials for teaching R and tidyverse

Results 4 R_for_Data_Science issues
Sort by recently updated
recently updated
newest added
trafficstars

你好, 我自己使用R 已经超过十年了,偶然看到了你的这本书。翻了一下,非常喜欢。 全书整体性强,结构合理,逻辑清晰,语言简练,排版清新,图片设计尤其用心。这样的书籍在中文届太难得了。 所以特地来感谢一下。如果将来出版,我一定会买一本支持一下。 Dong

给出了B.12版本的注释,供参考: ``` library(tidyverse) set.seed(12) d1

最近在课程中,通过师生通力合作,对一些可视化的参考答案做了更多的实现,供参考: B.13 版本1 ``` library(ggplot2) #产生正态分布的密度函数 dist_func1

学生作品,供参考: ``` library(ggplot2) df=data.frame( x = c("a", "b", "c", "d", "e", "f", "g"), y = c(6, 5, 4, 3, 2, 2, 1) ) ggplot(df,aes(x=x,y=y,fill=x))+ geom_col(show.legend = FALSE)+ geom_tile(aes(x = as.numeric(factor(x))...