v_radar | R Documentation |
Create a Radar Chart
v_radar(
vc,
mapping = NULL,
data = NULL,
name = NULL,
...,
serie_id = NULL,
data_id = NULL
)
vc |
A chart initialized with |
mapping |
Default list of aesthetic mappings to use for chart. |
data |
Default dataset to use for chart. If not already
a |
name |
Name for the serie, only used for single serie (no |
... |
Additional parameters for the serie. |
data_id , serie_id |
ID for the data/serie, can be used to further customize the chart with |
A vchart()
htmlwidget
object.
library(vchartr)
# Default radar chart
subset(electricity_mix, country == "Germany") %>%
vchart() %>%
v_radar(aes(source, generation))
# Without area
subset(electricity_mix, country == "Germany") %>%
vchart() %>%
v_radar(
aes(source, generation),
area = list(visible = FALSE)
)
# Mutliple series
subset(electricity_mix, country %in% c("Germany", "Canada")) %>%
vchart() %>%
v_radar(aes(source, generation, color = country))
# Custom axes
subset(electricity_mix, country == "Germany") %>%
vchart() %>%
v_radar(aes(source, generation)) %>%
v_scale_y_continuous(min = 0, max = 200)
subset(electricity_mix, country == "Germany") %>%
vchart() %>%
v_radar(aes(source, generation)) %>%
v_scale_y_continuous(
grid = list(smooth = FALSE),
domainLine = list(visible = FALSE)
) %>%
v_scale_x_discrete(
label = list(space = 20),
domainLine = list(visible = FALSE)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.