visualization.draw_bitmap

visualization.draw_bitmap(
    geometry,
    *,
    title=None,
    node_color=None,
    cmap='coolwarm',
    **kwgs,
)

Draw a bitmap plot of given geometry data.

Parameters

Name Type Description Default
geometry psiclone.geometry.Network A geometry object with grid structure. required
title str A title of the plot, if needed. None
node_color array - like Specify each pixel color in float; default is the levels of geometry nodes. None
cmap str or Colormap, optional (default: "coolwarm") A color map passed to matplotlib. 'coolwarm'

Other Parameters

Name Type Description Default
**kwgs dict These are passed to the function matplotlib.pyplot.imshow {}