Learn R Programming

RTL (version 1.3.2)

distdescplot: Summary of distribution properties of a timeseries

Description

Provides a summary of returns distribution

Usage

distdescplot(x = x)

Value

Multiple plots describing the distribution.

Arguments

x

Wide dataframe with date column and single series (univariate).

Author

Philippe Cote

Examples

Run this code
x <- dplyr::tibble(
  date = seq.Date(Sys.Date() - 1000, Sys.Date(), 1),
  CL01 = c(rnorm(501, 0, 0.02), rnorm(500, 0, 0.01))
)
distdescplot(x = x)

Run the code above in your browser using DataLab