R--data.tree(1)

Introduction to data.tree


the data.tree package lets you create hierarchies,called data.tree structures.
traversal search sort operations, recursive tree programming
decorate Nodes with own fields and methods, extend the package to your nodes

neatly printing and plotting trees
conversion from and to data.frames lists and other tree structures such as dendrogram phylo objects from ape packages igraph and other

data.tree structures are bi-directional,ordered trees.

Node

#attribute: active,field,method.  Get
#active: (property) a field on a node like node$position(node本身有的字段)
#field: a named value on a Node like node$cost <- 2500(用户自定义的字段)
#method: a function acting on an node like node$Revert() (OO) or Revert(node) (traditional)
#inheritance: a child Node inherits attribute from one of its ancestors. Get,SetNodeStyle```

#Tree creation

建造树的时候需要注意的是,只能使用$AddChild建造下一层的树叶子,不能跨层建立

建造的时候可以指定此次建造的叶子的变量,可以使用这个变量用$AddChild建造下一层的叶子

library(data.tree)
acme <- Node$new("Acme")
accounting <- acme$AddChild("Accounting")
software <- accounting$AddChild("software")
print(acme)

each Node is identified by its name

the name needs to be unique among siblings,such that paths to Nodes are unambiguous(清楚的)

如果不指定每个Node的name,那么将会使用AddChild()里面的默认字符串作为name

acme$AddChild("data")
acme$Get("name")

另外一种获取name的方法

acme$children[[1]]$name

输出字符串 Acme Accounting software data

向量 "Acme" "Accounting" "software" "data"

那我就可以写一个算法,将所有name存在一样的先改过来,不改变字符串的值,只是改变name

已经搞定

从data.frame建造树

要点是要确定数据框数据的pathString

library(data.tree)
library(treemap)
data(GNI2014)
head(GNI2014)

这一步是关键

GNI2014$pathString <- paste("world",GNI2014$continent,GNI2014$country,sep="/")
population <- as.Node(GNI2014)

print的打印的时候可以选择的参数

print(population,"iso3","population","GNI",limit=30)

Node exhibits reference semantics.R中所有的变量都是引用,直接修改当地的值

OO-style actives: Node$isRoot

OO-style methods: Node$Prune(pruneFun)

Classical R methods: Clone(node)

对,可以先复制过来树,然后建造删除函数,把每层位置大于10的节点都删除掉

然后给每一层添加一个省略号节点,然后再绘图

paste(rep(".",3),sep = "")

只显示15个项目的内容

print(population, limit = 15)```

Actives

#population$isRoot
#population$height
#children of node 可以用这个进行判断,如果children大于10就开始进行调用那个删除函数
population$count
#total node in the tree
population$totalCount
#population$fields
#population$fieldsAll
#population$averageBranchFactor```

#OO-style Methods

population$Get("population",filterFun = isLeaf)
population$Prune(pruneFun = function(x) !x$isLeaf || x$population>10000)

那我要定义的删除函数就是删除每个节点下位置大于10的节点

population$Get("population",filterFun = isLeaf)```

Traditional R methods

popClone <- Clone(acme)```

#tree navigation

by path 一层一层的索引

acme$IT$outsource

by position通过位置

acme$children[[1]]$children[[2]]$name

by fields

navigate by name, also by other fields with Climb method.

levelName

1 Acme Inc.

2 ¦--Accounting

3 ¦ ¦--New Software

4 ¦ °--New Accounting Standards

5 ¦--Research

6 ¦ ¦--New Product Line

7 ¦ °--New Labs

8 °--IT

9 ¦--Outsource

10 ¦--Go agile

11 °--Switch to R

acme$Climb(position=1,name="software")$path

and as a shortcut you can climb mutiple levels with a single argument

tree <- CreateRegularTree(5,5)
tree$Climb(position=c(2,3,4))$name

下面是一个比较增深理解的例子,先找到根节点的2位置的child,然后找到child的3位置的child

然后找到名字是1.2.3.4的child,继续最后寻找到名字是1.2.3.4.5的child

tree$Climb(position=c(2,3),name=c("1.2.3.4","1.2.3.4.5"))$path```

Custom fields

#we can add any custom field to any Node in a data.frame structure
software$cost <- 1000000
software$p <- 0.5
print(acme, "cost", "p")
#and there is a list of reserved names you cannot use as Node fields
#custom fields in constructor
#assign custom fields in the constructor or in the Node$AddChild method
birds <- Node$new("Aves", vulgo = "Bird")
birds$AddChild("Neognathae", vulgo = "New Jaws", species = 10000)
birds$AddChild("Palaeognathae", vulgo = "Old Jaws", species = 60)
print(birds, "vulgo", "species")
#custom fields as function
#setting a function as a field
#计算子节点这个字段的总和
birds$species <- function(self) sum(sapply(self$children, function(x) x$species))
print(birds, "species")
#and data.tree maps the self argument to the Node at hand
#this and Set method and recursion(递归), becomes a very powerful tool```

#Printing

on the left, you have the hierachy,then you have a column per variable you want to print

print(acme,"cost","p")

Formatters

you can use formatters to output a variable in a certain way

first you can set them on a Node using the SetFormat

and the formatter will be picked up as a default formatter

So you can overwrite a formatter for a sub-tree

SetFormat(acme,"p",formatFun = FormatPercent)
SetFormat(acme,"cost",formatFun = function(x) FormatFixedDecimal(x,digits=2))
print(acme,"p","cost")

Printing using Get

Formatting with the Get method overwrites any formatters found along the path

data.frame(cost=acme$Get("cost",format=function(x) FormatFixedDecimal(x,2)),
p=acme$Get("p",format=FormatPercent))```

Plotting

plot(acme)
#现在plot的当务之急是要把这个叶子分开,要不挤到那里还是非常难看的
#igraph
library(igraph)
plot(as.igraph(acme,directed=T,direction=T))```
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 197,966评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 83,170评论 2 375
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 144,909评论 0 327
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,959评论 1 268
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,851评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,583评论 1 275
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,956评论 3 388
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,590评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,878评论 1 293
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,892评论 2 314
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,719评论 1 328
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,501评论 3 316
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,957评论 3 300
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,124评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,440评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,003评论 2 343
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 41,211评论 2 339

推荐阅读更多精彩内容

  • “下班没?我回西安了。刚下车,想吃你家对面的那家煎饼。” 肖给我打电话的时候,我刚刚结束一天的忙碌,准备下班。这个...
    晴空晓晓阅读 436评论 6 3
  • 刚刚过去的中考让本是紧张不安的我是有点的平静,不再有在那之前的波动,心中却是多了一点激动,每天在床上翻来覆去的睡不...
    浩恩阅读 169评论 0 1
  • 房间里还残留着些许气息 仅剩的三炷香也快燃尽 待这香的味道消失殆尽 那股执念也会随着时间和空间的变化慢慢放下吧! ...
    流光溢彩纷呈阅读 188评论 0 0
  • 首先说一下Actor Model,作为一种进程或者线程间的通信模型,一般来说有两种选择,一种是CSP,比如Go语言...
    墨弈阅读 3,351评论 0 51
  •   去掉多余的cell分割线,自定义一个tableFooterView就好: cell分割线样式 tableVie...
    windyfat阅读 559评论 0 0