bind_probs {ffp} | R Documentation |
Stack Flexible Probabilities
Description
This function mimics dplyr
bind
. It's useful if you
have different ffp
objects and want to stack them in the tidy
(long) format.
Usage
bind_probs(...)
Arguments
... |
|
Value
A tidy tibble
.
The output adds two new columns:
-
rowid
(aninteger
) with the row number of each realization; -
key
(afactor
) that keeps track of theffp
inputs as separated objects.
See Also
crisp
exp_decay
kernel_normal
kernel_entropy
double_decay
Examples
library(ggplot2)
library(dplyr, warn.conflicts = FALSE)
x <- exp_decay(EuStockMarkets, lambda = 0.001)
y <- exp_decay(EuStockMarkets, lambda = 0.002)
bind_probs(x, y)
bind_probs(x, y) %>%
ggplot(aes(x = rowid, y = probs, color = fn)) +
geom_line() +
scale_color_viridis_d() +
theme(legend.position="bottom")
[Package ffp version 0.2.2 Index]