ggboxplot {RMOPI} | R Documentation |
Plot the Box Figure
Description
Plot the box figure beautifully with ggplot.
Usage
ggboxplot(data, mapping)
Arguments
data |
a tibble |
mapping |
the mapping parameter of ggplot |
Value
A box figure by ggplot
Examples
names <- c("swan", "bear", "tiger")
date <- as.Date("2015-01-01") + days(0:179)
mu <- c(0.2, 0.08, 0.1)
sigma <- matrix(c(1, 0.25, -0.3, 0.25, 0.25, 0, -0.3, 0, 0.36), 3, 3)
allret <- rMvReturnSim(names, date, mu, sigma)
totret <- StackRet(allret, date)
ggboxplot(totret, aes(x = stock, y = ret))
[Package RMOPI version 1.1 Index]