Plot skeleton and connectors for neuron retrieved from CATMAID
# S3 method for catmaidneuron plot3d(x, WithConnectors = FALSE, WithNodes = FALSE, soma = FALSE, ...)
x | A neuron to plot |
---|---|
WithConnectors | logical indicating whether or not to plot connectors
(defaults to |
WithNodes | logical indicating whether to plot branch/end points
(defaults to |
soma | Whether to plot a sphere at neuron's origin representing the
soma. Either a logical value or a numeric indicating the radius (default
|
... | additional arguments passed to |
# NOT RUN { nl=read.neurons.catmaid(c(10418394,4453485)) plot3d(nl) # now with connectors (i.e. synapses) plot3d(nl, WithConnectors=TRUE) # }