write.vtk: Write object to VTK file

View source: R/vtk-io.R

write.vtkR Documentation

Write object to VTK file

Description

Write object to VTK file

Usage

write.vtk(x, file, ...)

## S3 method for class 'neuron'
write.vtk(
  x,
  file,
  datatype = c("float", "double"),
  title = file,
  WriteAllSubTrees = TRUE,
  ...
)

Arguments

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.

Examples

## Not run: 
n=Cell07PNs[[1]]
write.vtk(n, paste0(n$NeuronName, ".vtk"))
write.neuron(n, paste0(n$NeuronName, ".vtk"))

## End(Not run)

natverse/nat documentation built on Feb. 19, 2024, 7:19 a.m.