| bind_probs | R Documentation |
This function mimics dplyr bind. It's useful if you
have different ffp objects and want to stack them in the tidy (long) format.
bind_probs(...)
... |
|
A tidy tibble.
The output adds two new columns:
rowid (an integer) with the row number of each realization;
key (a factor) that keeps track of the ffp inputs as separated objects.
crisp exp_decay kernel_normal
kernel_entropy double_decay
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.