han {LearnEDA} | R Documentation |
Performs hanning operation on a sequence of values where the end values are copied on.
han(sequence)
sequence |
numeric vector of values |
vector of smoothed values from hanning operations.
Jim Albert
# illustrates 3RSS and 3RSSH smooths plot(WWWusage) plot(smooth(WWWusage,kind="3RSS")) plot(han(smooth(WWWusage,kind="3RSS")))