neuronlist {nat} | R Documentation |
Create a neuronlist from zero or more neurons
Description
neuronlist
objects consist of a list of neuron objects
(usually of class neuron
or dotprops
) along
with an optional attached dataframe containing information about the
neurons. neuronlist
objects can be indexed using their name or the
number of the neuron like a regular list. Both the list
itself and
the attached data.frame
must have the same unique (row)names. If the
[
operator is used to index the list, the attached dataframe will
also be subsetted.
It is perfectly acceptable not to pass any parameters, generating an empty neuronlist
Usage
neuronlist(..., DATAFRAME = NULL)
Arguments
... |
objects to be turned into a list |
DATAFRAME |
an optional |
Value
A new neuronlist object.
See Also
as.data.frame.neuronlist
,
neuronlist-dataframe-methods
, neuron
,
dotprops
Other neuronlist:
*.neuronlist()
,
is.neuronlist()
,
neuronlist-dataframe-methods
,
neuronlistfh()
,
nlapply()
,
read.neurons()
,
write.neurons()
Examples
# generate an empty neuronlist
nl=neuronlist()
# slice an existing neuronlist with regular indexing
kcs5=kcs20[1:5]
# extract a single neuron from a neuronlist
n1=Cell07PNs[[1]]
# list all methods for neuronlist objects
methods(class='neuronlist')