pr#

class pr(obj, *args, **kwargs)[source]#

Pretty-print the detailed representation of an object.

See sc.prepr() for options.

Example:

import pandas as pd
df = pd.DataFrame({'a':[1,2,3], 'b':[4,5,6]})
print(df) # See just the data
sc.pr(df) # See all the methods too