Learn R Programming

biosignalEMG (version 2.0.0)

print.summary.eaemg: Shows the content of an 'eaemg' summary on the console

Description

S3 generic to show the content of an ‘eaemg’ summary on the console.

Usage

"print"(x, ...)

Arguments

x
an object of class ‘summary.eaemg’.
...
additional arguments to be passed to the generic function.

Value

Some values printed on screen.

See Also

eaemg

Examples

Run this code
# Simulate 10 seconds of an EMG
emgx <- syntheticemg(n.length.out = 10000, on.sd = 1, on.duration.mean = 350, 
    on.duration.sd = 10, off.sd = 0.05, off.duration.mean = 300, off.duration.sd = 20, 
    on.mode.pos = 0.75, shape.factor = 0.5, samplingrate = 1000, units = "mV", 
    data.name = "Synthetic EMG")
# MA-envelope
emgma <- envelope(emgx, method = "MA", wsize = 60)
# Ensemble-averaged EMG
ea <- eaemg(emgma, runs = rle(emgx$on.off), what = 1, timenormalization = "mean", 
    empirical = TRUE, level = 0.9)
summary(ea, lwd = 2)

Run the code above in your browser using DataLab