plot {greatR} | R Documentation |
Visualise registration results
Description
Visualise registration results
Usage
## S3 method for class 'res_greatR'
plot(
x,
type = c("result", "original"),
genes_list = NULL,
show_rep_mean = FALSE,
ncol = NULL,
title = NULL,
...
)
## S3 method for class 'dist_greatR'
plot(
x,
type = c("result", "original"),
match_timepoints = TRUE,
title = NULL,
...
)
## S3 method for class 'summary.res_greatR'
plot(
x,
type = c("all", "registered"),
type_dist = c("histogram", "density"),
genes_list = NULL,
bins = 30,
alpha = NA,
scatterplot_size = c(4, 3),
title = NULL,
...
)
Arguments
x |
Input object.
|
type |
Type of plot.
|
genes_list |
Optional vector indicating the |
show_rep_mean |
Whether to show |
ncol |
Number of columns in the plot grid. By default this is calculated automatically. |
title |
Optional plot title. |
... |
Arguments to be passed to methods (ignored). |
match_timepoints |
If |
type_dist |
Type of marginal distribution. Can be either "histogram" (default), or "density". |
bins |
Number of bins to use when |
alpha |
Optional opacity of the points in the scatterplot. |
scatterplot_size |
Vector |
Value
For
plot.res_greatR()
: plot of genes of interest after registration process (type = "result"
) or showing original time points (type = "original"
).For
plot.dist_greatR()
: distance heatmap of gene expression profiles over time between reference and query.For
plot.summary.res_greatR()
: TODO.