download_sparse_points#
- download_sparse_points(load: bool = True) PolyData | str[source]#
Download sparse points data.
Used with
download_saddle_surface().- Parameters:
- Returns:
- output
pyvista.PolyData|str DataSet or filename depending on
load.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> from pyvista import examples
>>> dataset = examples.download_sparse_points()
>>> dataset.plot(scalars='val', render_points_as_spheres=True, point_size=50)
See also
- Sparse Points Dataset
See this dataset in the Dataset Gallery for more info.
- Detailed Interpolating Points
Example using this dataset.