plot.HRM: Plotting Profile Curves

Description Usage Arguments Examples

View source: R/plot2.R

Description

Plotting profile curves for up to one whole- or subplot-factor

Usage

1
2
3
## S3 method for class 'HRM'
plot(x, xlab = "time", ylab = "mean", legend = TRUE,
  legend.title = "", ...)

Arguments

x

An object of class 'HRM' from the function 'hrm_test'

xlab

label of the x-axis of the plot

ylab

label of the y-axis of the plot

legend

logical indicating if a legend should be plotted

legend.title

title of the legend

...

Further arguments passed to the 'plot' function

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
data(EEG)
head(EEG)

# plots profiles according to groups with
# subplot-factor called dimension

# first create an HRM object
object_hrm <- hrm_test(value ~ group*dimension, subject = "subject", data = EEG)

# plot the HRM object, here we use the additional argument 'theme_bw()' for ggplot2
plot(object_hrm, legend = TRUE, legend.title = "Group", ... =  theme_bw() )

# same plot without a legend
# note that 'theme_bw' overwrites the standard legend properties of plot.HRM
plot(object_hrm, ... =  theme_bw() +
  theme(legend.title = element_blank(), legend.position="none") )

happma/HRM documentation built on Feb. 11, 2020, 3:50 a.m.