-
Notifications
You must be signed in to change notification settings - Fork 5
/
plot.imlist.Rd
46 lines (36 loc) · 1.13 KB
/
plot.imlist.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plot.imlist.R
\name{plot.imlist}
\alias{plot.imlist}
\title{Plot im objects (list)}
\usage{
\method{plot}{imlist}(
x,
...,
main = "image",
lim = NA,
transf = NULL,
frame = 1,
scalename = "Density",
color = c("white", "#F8DAC5FF", "#F4825AFF", "#D2204CFF", "#771F59FF"),
grayscale = FALSE,
ncol = NA,
nrow = NA
)
}
\arguments{
\item{x}{input}
\item{...}{arguments passed on to the function}
\item{main}{title}
\item{lim}{limits of the scale. By default, NA. To set limits manually, provide a vector or max and min}
\item{transf}{a function to transform the pixel values (by default, NULL)}
\item{frame}{the element number of the list object (by default, 1)}
\item{scalename}{the name of the scale}
\item{color}{the color scale. By default, "white", "#F8DAC5FF", "#F4825AFF", "#D2204CFF", and "#771F59FF".}
\item{grayscale}{grayscale or not. By default, FALSE.}
\item{ncol}{the number of columns (if plotitng multiple images at once)}
\item{nrow}{the number of rows (if plotting multiple images at once)}
}
\description{
Plot im objects (list)
}