amMekko {rAmCharts} | R Documentation |
Plotting mekko chart (quali vs quali)
Description
amMekko computes a mekko chart of the given values.
Usage
amMekko(
x,
y,
data,
xlab = "",
ylab = "",
groups_color = NULL,
horiz = FALSE,
show_values = FALSE,
...
)
Arguments
x |
|
y |
|
data |
|
xlab |
|
ylab |
|
groups_color |
|
horiz |
|
show_values |
|
... |
see |
References
See online documentation https://datastorm-open.github.io/introduction_ramcharts/ and amChartsAPI
See Also
amOptions, amBarplot, amBoxplot, amHist, amPie, amPlot, amTimeSeries, amStockMultiSet, amBullet, amRadar, amWind, amFunnel, amAngularGauge, amSolidGauge, amMekko, amCandlestick, amFloatingBar, amOHLC, amWaterfall
Examples
data(data_mekko)
amMekko(x = "var1", y = "var2", data = data_mekko)
## Not run:
# Other examples available which can be time consuming depending on your configuration.
library(pipeR)
# Horizontal
amMekko(x = "var1", y = "var2", data = data_mekko, horiz = TRUE)
# Display values
amMekko(x = "var1", y = "var2", data = data_mekko, show_values = TRUE)
## End(Not run)