amWind {rAmCharts} | R Documentation |
Plotting wind
Description
amWind computes a windplot of the given data values.
Usage
amWind(data, col = NULL, backTransparency = 0.5, ...)
Arguments
data |
|
col |
|
backTransparency |
|
... |
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
## Not run:
data("data_wind")
amWind(data_wind)
# Other examples available which can be time consuming depending on your configuration.
# Change color
amWind(data = data_wind, col = "#0404B4")
amWind(data = data_wind, col = c("#0404B4","#01DF01","#FFBF00"))
# Change backTransparency
amWind(data = data_wind, col = c("#0404B4","#01DF01","#FFBF00"), backTransparency = 0.1)
amWind(data = data_wind, col = c("#0404B4","#01DF01","#FFBF00"), backTransparency = 1)
amWind(data = data_wind, col = c("#0404B4","#01DF01","#FFBF00"), backTransparency = c(0.1, 0.1, 1))
## End(Not run)
[Package rAmCharts version 2.1.15 Index]