Printing and plotting#
Do you ever do print(obj)
and get some unhelpful result like <object at 0x7f4d0b1ea190>
? sc.pr(obj)
will tell you exactly what’s in the object, including attributes (including their values), properties, and methods.
Have you ever wanted to plot something in 3D but given up because it seems like it would take too long? With Sciris, it will work out of the box: try sc.surf3d(np.random.randn(10,10))
. We’ll wait.
Printing/notification functions. |
|
Extensions to Matplotlib, including 3D plotting and plot customization. |
|
Handle colors and colormaps. |