scale-methods: Scaling and Centering of ghyp Objects

Description Usage Arguments Value Author(s) See Also Examples

Description

scale centers and/or scales a generalized hyperbolic distribution to zero expectation and/or unit variance.

Usage

1
2
## S4 method for signature 'ghyp'
scale(x, center = TRUE, scale = TRUE)

Arguments

x

An object inheriting from class ghyp.

center

A logical value stating whether the object shall be centered to zero expectation.

scale

A logical value stating whether the object shall be scaled to unit variance.

Value

An object of class ghyp.

Author(s)

David Luethi

See Also

transform, mean, vcov.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
  data(indices)

  t.fit <- fit.tmv(indices)
  gauss.fit <- fit.gaussmv(indices)

  ## Compare the fitted Student-t and Gaussian density.
  par(mfrow = c(1, 2))

  ## Once on the real scale...
  plot(t.fit[1], type = "l")
  lines(gauss.fit[1], col = "red")

  ## ...and once scaled to expectation = 0, variance = 1
  plot(scale(t.fit)[1], type = "l")
  lines(scale(gauss.fit)[1], col = "red")

ghyp documentation built on May 2, 2019, 6:09 p.m.