recharts (version 0.0.302)

eRadar: Radar charts

Description

ECharts style radar charts.

Usage

eRadar(dat, limit = NULL, opt = list())

Arguments

dat
data.frame or matrix, should have colnames and rownames.
limit
data.frame or matrix, 2 column, indicates the limit of each axis.
opt
option of ECharts.

Value

The HTML code as a character string.

Examples

Run this code
require(plyr)
dat = ddply(iris, .(Species), colwise(mean))
rownames(dat) = dat[,1]
dat = dat[, -1]
dat
plot(eRadar(dat))

Run the code above in your browser using DataCamp Workspace