print.summary.emg {biosignalEMG} | R Documentation |
S3 generic to show the content of an ‘emg’ summary on the console.
## S3 method for class 'summary.emg'
print(x, ...)
x |
an object of class ‘summary.emg’. |
... |
additional arguments to be passed to the generic function. |
Some values printed on screen.
J.A. Guerrero jaguerrero@correo.uaa.mx
# Creates a random vector to simulate an EMG signal
x <- rnorm(10000, 0, 1)
# Creates an 'emg' object to store x
emg1 <- emg(x, samplingrate = 1000, units = "mV", data.name = "")
# Summarize and visualize the data
summary(emg1)