R
mbshqqb
这个作者很懒,什么都没留下…
展开
-
ch6.1 data.table 基础
data.table 教程1-data.table 介绍by · 2016年03月13日 · 9559 Words · ~20min reading time | 最近使用data.table这个增强包,来计算数据的聚合信息,比sql语句简单明了不是一点半点,于是想把data.table的资料翻译出来。目录:data.table 介绍语义引用主键、基于二分法转载 2017-04-07 09:17:08 · 335 阅读 · 0 评论 -
ch6 data.table目录
http://youngspring1.github.io/categories/data.table%E6%95%99%E7%A8%8B/转载 2017-04-07 10:00:28 · 298 阅读 · 0 评论 -
R语言的使用
list和vector不一样,后者存储的数据为同一种mode,list可以存储不同mode的数据,一个list就像是一个json,一个包涵很多键值对的数据结构list的创建方式1) 带tag的方式:j2) 无tag的方式:j3) vector的mode参数:zlist中元素的访问:1) list_name$tag_name2) list_name[[tag_name]]3)原创 2017-04-10 17:42:21 · 925 阅读 · 0 评论 -
ubuntu16.10安装Rstudio时依赖包的解决
1) Get the latest R Studio Daily Build here, though note that it's not necessarily stable.2) Install, chaning the name of the package to the one you downloaded - perhaps easiest if you go to your原创 2017-03-24 17:29:08 · 1690 阅读 · 0 评论 -
apply,by,eapply,lapply,mapply,rapply,tapply
https://nsaunders.wordpress.com/2010/08/20/a-brief-introduction-to-apply-in-r/what are these wondrous apply functions and how do they work? I think the best way to figure out anything in R is to转载 2017-04-04 23:08:09 · 1055 阅读 · 0 评论 -
leaflet延迟加载
中文:http://blog.csdn.net/naipeng/article/details/53670667官网:http://leafletjs.com/examples/extending/extending-2-layers.html原创 2017-06-23 18:45:44 · 1061 阅读 · 0 评论 -
R语言数据处理包dplyr、tidyr笔记
dplyr包是Hadley Wickham的新作,主要用于数据清洗和整理,该包专注dataframe数据格式,从而大幅提高了数据处理速度,并且提供了与其它数据库的接口;tidyr包的作者是Hadley Wickham, 该包用于“tidy”你的数据,这个包常跟dplyr结合使用。本文将介绍dplyr包的下述五个函数用法:筛选: filter()排列: arrange()选择: se转载 2017-04-17 15:53:19 · 2710 阅读 · 0 评论 -
R语言扩展包dplyr笔记
引言2014年刚到, 就在Feedly 订阅里看到RStudio Blog 介绍dplyr 包已发布 (Introducing dplyr), 此包将原本 plyr 包中的 ddply() 等函数进一步分离强化,专注接受dataframe对象, 大幅提高了速度, 并且提供了更稳健的与其它数据库对象间的接口. 既然是Hadley Wickham 的新作, 并自称a g转载 2017-04-17 15:03:08 · 919 阅读 · 0 评论