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

...

ffp objects to combine.

Value

A tidy tibble.

The output adds two new columns:

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]