plot_model | R Documentation |
Plots a manually constructed model.
plot_model(
model_evaluation,
by_roi = FALSE,
ncol = NULL,
nrow = NULL,
scales = "free_y",
rois = NULL
)
model_evaluation |
The output from the evaluate_model function. |
by_roi |
Whether to plot the fit for each ROI independently. |
ncol |
Number of columns in the facet wrap. |
nrow |
Number of rows in the facet wrap. |
scales |
Whether to free certain axes of the facet wrap. |
rois |
A subset of ROIs to visualize. |
A ggplot visualization of the model.
# prepare model specs
model3 <- data.frame(event = c("encoding", "delay", "response"),
start_time = c(0, 2.65, 12.5),
duration = c(2.65, 9.85, 3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.