使用ggplot2中的圆形打包可视化分层数据?

时间:2015-11-11 04:25:30

标签: r ggplot2

我有一些分层数据,例如

> library(dplyr)
> df <- data_frame(id = 1:6, parent_id = c(NA, 1, 1, 2, 2, 5))
> df
Source: local data frame [6 x 2]

     id parent_id
  (int)     (dbl)
1     1        NA
2     2         1
3     3         1
4     4         2
5     5         2
6     6         5

我想在一个&#34;自上而下&#34;通过圆形包装图查看: http://bl.ocks.org/mbostock/4063530

circle packing plot

以上链接适用于d3库。是否有一个等价物允许我在ggplot2中制作这样的情节?

(我希望这个情节在一个闪亮的应用程序,它确实支持d3,但我还没有使用过d3并且不确定学习曲线。如果d3是显而易见的选择,我会尝试让它工作相反。谢谢。)

1 个答案:

答案 0 :(得分:12)

有两个步骤:(1)聚合数据,然后(2)转换为json。之后,所有的javascript都写在该示例页面中,因此您只需插入生成的json数据即可。

由于聚合数据应具有与树形图类似的结构,因此我们可以使用treemap包进行聚合(也可以使用具有连续聚合的循环)。然后,d3treeR(来自github)用于将树形图数据转换为嵌套列表,jsonlite将列表转换为json。

我正在使用GNI2010包中的一些示例数据d3treeR。您可以在plunker上看到所有源文件。

library(treemap)
library(d3treeR)  # devtools::install_github("timelyportfolio/d3treeR")
library(data.tree)
library(jsonlite)

## Get treemap data using package treemap
## Using example data GNI2010 from d3treeR package
data(GNI2010)

## aggregate by these: continent, iso3,
## size by population, and color by GNI
indexList <- c('continent', 'iso3')  
treedat <- treemap(GNI2010, index=indexList, vSize='population', vColor='GNI',
               type="value", fun.aggregate = "sum",
               palette = 'RdYlBu')
treedat <- treedat$tm  # pull out the data

## Use d3treeR to convert to nested list structure
## Call the root node 'flare' so we can just plug it into the example
res <- d3treeR:::convert_treemap(treedat, rootname="flare")

## Convert to JSON using jsonlite::toJSON
json <- toJSON(res, auto_unbox = TRUE)

## Save the json to a directory with the example index.html
writeLines(json, "d3circle/flare.json")

我还将示例index.html中的源代码行替换为

  <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>

然后启动index.html你应该看到 enter image description here

创建闪亮的绑定应该可以使用htmlwidgets并遵循一些示例(d3treeR源有一些)。请注意,某些东西不起作用,比如着色。存储在这里的json实际上包含很多关于节点的信息(使用treemap汇总的所有数据),您可以在图中使用这些信息。