f_plot: Plot dynamic risk measures

Description Usage Arguments Value Author(s) Examples

View source: R/Functions_SystemicR.R

Description

This function provides a framework to plot xts time series.

Usage

1
f_plot(xts_index_returns)

Arguments

xts_index_returns

A xts vector

Value

No return value, called for side effects

Author(s)

Jean-Baptiste Hasse

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# Plot a xts vector

# NOT RUN {


  # Generate data returns
  v_returns <- numeric(10)
  v_returns <- rnorm(10, 0, 0.01)
  v_date <- seq(from = as.Date("2019-01-01"), to = as.Date("2019-10-01"), by = "month")
  xts_returns <- xts(v_returns, order.by = v_date)

  # Plot the xts vector of simulated returns
  f_plot(xts_returns)


# }

SystemicR documentation built on July 1, 2020, 10:30 p.m.

Related to f_plot in SystemicR...