PupillometryR (version 0.0.1)

plot.PupillometryR: Pre-prepared plots of PupillometryR data

Description

The plot functions are designed to run with just data and pupil selections, with some additional options for fun with plotting. This allows to see raw data as points, grouped by either subject or condition.

Usage

# S3 method for PupillometryR
plot(x, pupil, group = c("none", "condition",
  "subject"), model = NULL, ...)

Arguments

x

A PupillometryR dataframe

pupil

Column name of pupil data to be plotted

group

What to group the data by (none, condition, or subject)

model

Optional argument to plot agains a fitted model

...

Ignored

Value

A ggplot object

Examples

Run this code
# NOT RUN {
Sdata <- make_pupillometryr_data(data = pupil_data,
subject = ID,
trial = Trial,
time = Time,
condition = Type)
Sdata2 <- downsample_time_data(data = Sdata,
pupil = LPupil,
timebin_size = 100,
option = 'median')
p <- plot(Sdata2, pupil = LPupil, group = 'subject')
p

# }

Run the code above in your browser using DataLab