Learn R Programming

mosum (version 1.2.7)

multiscale.grid: Multiscale bandwidth grids

Description

Create asymmetric bandwidth grids to be used with multiscale.localPrune

Usage

multiscale.grid(
  bandwidths.left,
  bandwidths.right = bandwidths.left,
  method = "cartesian",
  max.unbalance = 4
)

Value

S3 multiscale.grid object to be used in the multiscale.grid function

Arguments

bandwidths.left

left parts of the bandwidths

bandwidths.right

right parts of the bandwidths

method

how the asymmetric bandwidths are created; possible values are

  • 'cartesian'create all bandwidths in the Cartesian product of bandwidths.left and bandwidths.right

  • 'concatenate'join bandwidths.left and bandwidths.right element-wise

max.unbalance

a numeric value for the maximal ratio between maximal and minimal bandwidth, 1 <= max.unbalance <= Inf; use iff method='cartesian'