Plot.Radar {AutoPlots} | R Documentation |
Plot.Radar
Description
Plot.Radar
Usage
Plot.Radar(
dt = NULL,
AggMethod = "mean",
PreAgg = TRUE,
YVar = NULL,
GroupVar = NULL,
YVarTrans = "Identity",
Height = NULL,
Width = NULL,
Title = "Radar Plot",
ShowLabels = FALSE,
EchartsTheme = "macarons",
ShowSymbol = FALSE,
TextColor = "white",
title.fontSize = 22,
title.fontWeight = "bold",
title.textShadowColor = "#63aeff",
title.textShadowBlur = 3,
title.textShadowOffsetY = 1,
title.textShadowOffsetX = -1,
ContainLabel = TRUE,
DarkMode = FALSE,
Debug = FALSE
)
Arguments
dt |
source data.table |
AggMethod |
character |
PreAgg |
logical |
YVar |
Y-Axis variable name. You can supply multiple YVars |
GroupVar |
One Grouping Variable |
YVarTrans |
"Asinh", "Log", "LogPlus1", "Sqrt", "Asin", "Logit", "PercRank", "Standardize", "BoxCox", "YeoJohnson" |
Height |
"400px" |
Width |
"200px" |
Title |
"Title" |
ShowLabels |
character |
EchartsTheme |
Provide an "Echarts" theme |
ShowSymbol |
= FALSE |
TextColor |
"Not Implemented" |
title.fontSize |
22 |
title.fontWeight |
"bold" |
title.textShadowColor |
'#63aeff' |
title.textShadowBlur |
3 |
title.textShadowOffsetY |
1 |
title.textShadowOffsetX |
-1 |
ContainLabel |
TRUE |
DarkMode |
FALSE |
Debug |
Debugging purposes |
Value
plot
Author(s)
Adrian Antico
See Also
Other Standard Plots:
Plot.ACF()
,
Plot.Area()
,
Plot.BarPlot3D()
,
Plot.Bar()
,
Plot.Box()
,
Plot.Copula3D()
,
Plot.Copula()
,
Plot.CorrMatrix()
,
Plot.Density()
,
Plot.Donut()
,
Plot.HeatMap()
,
Plot.Histogram()
,
Plot.Line()
,
Plot.PACF()
,
Plot.Parallel()
,
Plot.Pie()
,
Plot.ProbabilityPlot()
,
Plot.River()
,
Plot.Rosetype()
,
Plot.Scatter3D()
,
Plot.Scatter()
,
Plot.StackedBar()
,
Plot.Step()
,
Plot.WordCloud()
Examples
# Create Data
dt <- data.table::data.table(Y = pnorm(q = runif(8)), GV = sample(LETTERS[1:4], 8, TRUE))
# Create plot
AutoPlots::Plot.Radar(
dt = dt,
AggMethod = "mean",
PreAgg = FALSE,
YVar = "Y",
GroupVar = "GV",
YVarTrans = "Identity",
Height = NULL,
Width = NULL,
Title = 'Radar Plot',
ShowLabels = FALSE,
EchartsTheme = "macarons",
ShowSymbol = FALSE,
TextColor = "black",
title.fontSize = 22,
title.fontWeight = "bold",
title.textShadowColor = '#63aeff',
title.textShadowBlur = 3,
title.textShadowOffsetY = 1,
title.textShadowOffsetX = -1,
ContainLabel = TRUE,
DarkMode = FALSE,
Debug = FALSE)