quickobj#
- class quickobj(*args, **kwargs)[source]#
Bases:
prettyobjLike
sc.prettyobj(), but do not print attribute values.This class is better for large objects that take a while to display. It is somewhat similar to calling dir() on an object.
This class also defines a
disp()method, which callssc.pr()on the object.Example:
import numpy as np myobj = sc.quickobj(big1=np.random.rand(100,100), big2=sc.dataframe(a=np.arange(1000))) print(myobj)
New in version 3.1.5.Methods