han {LearnEDA}R Documentation

Hanning a sequence

Description

Performs hanning operation on a sequence of values where the end values are copied on.

Usage

han(sequence)

Arguments

sequence numeric vector of values

Value

vector of smoothed values from hanning operations.

Author(s)

Jim Albert

Examples

# illustrates 3RSS and 3RSSH smooths
plot(WWWusage)
plot(smooth(WWWusage,kind="3RSS"))
plot(han(smooth(WWWusage,kind="3RSS")))

[Package LearnEDA version 1.01 Index]