plopp.graphics.scatter3dfigure#

plopp.graphics.scatter3dfigure(*args, **kwargs)[source]#

Create a figure to represent three-dimensional data from one or more graph node(s). :rtype: FigureLike

New in version 24.04.0.

Examples

Create an input node and attach a scatter3dfigure as a view:

>>> da = pp.data.scatter()
>>> in_node = pp.Node(da)
>>> fig = pp.scatter3dfigure(in_node)

With a customization argument to make the color scale logarithmic:

>>> da = pp.data.scatter()
>>> in_node = pp.Node(da)
>>> fig = pp.scatter3dfigure(in_node, norm='log')