write.vtk | R Documentation |
Write object to VTK file
write.vtk(x, file, ...)
## S3 method for class 'neuron'
write.vtk(
x,
file,
datatype = c("float", "double"),
title = file,
WriteAllSubTrees = TRUE,
...
)
x |
Object to write |
file |
Path to output file |
... |
Additional arguments to methods |
datatype |
The VTK data type (one of float or double) |
title |
Title of the .vtk file (defaults to file) |
WriteAllSubTrees |
Whether to write all subtrees in the neuron or just the main tree. |
## Not run:
n=Cell07PNs[[1]]
write.vtk(n, paste0(n$NeuronName, ".vtk"))
write.neuron(n, paste0(n$NeuronName, ".vtk"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.