R语言笔记
文章平均质量分 91
Jacky的博客
这个作者很懒,什么都没留下…
展开
-
R语言中的数学计算(转载)
R语言中的数学计算关于作者:张丹(Conan), 程序员Java,R,PHP,Javascript weibo:@Conan_Z blog: http://blog.fens.me email: bsspirit@gmail.com 转载请注明出处: http://blog.fens.me/r-mathematics/r-math前言R是作为统计语言,生来就对数学有良好的支持,一个函数就能转载 2016-06-07 23:04:34 · 31535 阅读 · 2 评论 -
R Programming Assignment 1
Assignment: Air Pollution原创 2016-06-11 12:55:06 · 2943 阅读 · 1 评论 -
R语言笔记六
去除NA值方案一ggplot(aes(x=friend_count), data=subset(pf, !is.na(gender)))+ geom_histogram()+ scale_x_continuous(limits = c(0,1000), breaks = seq(0,1000,50))+ facet_wrap(~gender原创 2016-07-10 22:45:45 · 2471 阅读 · 0 评论 -
Define your own binary operators
Define your own binary operators# The syntax for creating new binary operators in R is unlike anything else in# R, but it allows you to define a new syntax for your function. I would only# recom原创 2016-06-11 11:41:29 · 758 阅读 · 0 评论 -
R语言笔记一
r语言原创 2016-06-19 21:44:10 · 12819 阅读 · 0 评论 -
R语言笔记二(控制结构)
paste(“hello”, “world”, sep = ” “)原创 2016-06-21 22:18:34 · 9645 阅读 · 0 评论 -
R语言笔记三(循环控制)
R语言笔记二Looping on the Command Linelapply: Loop over a list and evaluate a function on each elementsapply: Same as lapply but try to simplify the resultapply: Apply a function over the margins原创 2016-05-30 14:53:13 · 2148 阅读 · 0 评论 -
R语言笔记五
DebuggingDiagnosing the problemSomething’s Wrong! Indications that something’s not right.message: A generic notification/diagnostic message produced by the message function; execution of the functio原创 2016-07-04 15:34:18 · 10407 阅读 · 0 评论