solist | R Documentation |
Make a list of two-dimensional spatial objects.
solist(..., check=TRUE, promote=TRUE, demote=FALSE, .NameBase)
... |
Any number of objects, each representing a two-dimensional spatial dataset. |
check |
Logical value. If |
promote |
Logical value. If |
demote |
Logical value determining what should happen if any of the
objects is not a 2D spatial object: if |
.NameBase |
Optional. Character string. If the |
This command creates an object of class "solist"
(spatial object list)
which represents a list of two-dimensional spatial datasets.
The datasets do not necessarily belong to the same class.
Typically the intention is that the datasets in the list
should be treated in the same way, for example, they should
be plotted side-by-side. The spatstat package
provides a plotting function, plot.solist
,
and many other functions for this class.
In the spatstat package, various functions produce
an object of class "solist"
. For example, when
a point pattern is split into several point patterns by
split.ppp
, or an image is split into several
images by split.im
, the result is of
class "solist"
.
If check=TRUE
then the code will check whether all
objects in ...
belong to the classes
of two-dimensional spatial objects defined in the
spatstat package. They do not have to belong to the
same class. Set check=FALSE
for efficiency, but only if you are sure that all the objects are valid.
If some of the objects in ...
are
not two-dimensional spatial objects,
the action taken depends on the argument demote
.
If demote=TRUE
, the result will belong to the more general
class "anylist"
instead of "solist"
.
If demote=FALSE
(the default), an error occurs.
If promote=TRUE
then the code will check whether all
the objects ...
belong to the same class.
If they are all point patterns (class "ppp"
),
the result will also belong to the class "ppplist"
.
If they are all pixel images (class "im"
), the result
will also belong to the class "imlist"
.
Use as.solist
to convert a list to a "solist"
.
A list, usually belonging to the class "solist"
.
.
as.solist
,
anylist
,
solapply
solist(cells, distmap(cells), quadratcount(cells))
solist(cells, japanesepines, redwood, .NameBase="Pattern")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.