hctreemap: Shortcut for create treemaps

Description Usage Arguments Examples

View source: R/hchart-shorcuts.R

Description

This function helps to create highcharts treemaps from treemap objects from the package treemap. NOTE: This function is deprecated. Please use hctreemap2 instead.

Usage

1

Arguments

tm

A treemap object from the treemap package.

...

Additional shared arguments for the data series (https://api.highcharts.com/highcharts/series).

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
## Not run: 

library("treemap")
library("viridis")

data(GNI2014)
head(GNI2014)

tm <- treemap(GNI2014,
  index = c("continent", "iso3"),
  vSize = "population", vColor = "GNI",
  type = "comp", palette = rev(viridis(6)),
  draw = FALSE
)

hctreemap(tm, allowDrillToNode = TRUE, layoutAlgorithm = "squarified") %>%
  hc_title(text = "Gross National Income World Data") %>%
  hc_tooltip(pointFormat = "<b>{point.name}</b>:<br>
                             Pop: {point.value:,.0f}<br>
                             GNI: {point.valuecolor:,.0f}")

## End(Not run)

highcharter documentation built on Jan. 3, 2022, 5:08 p.m.