In [1]:
    
from physt import examples
from physt import plotting
plotting.set_default_backend("ascii")
import numpy as np
np.random.seed(42)
    
In [2]:
    
examples.normal_h1().plot()
    
    
In [3]:
    
plotting.ascii.ENABLE_ASCIIPLOTLIB = False
examples.normal_h1().plot(show_values=True)
    
    
In [4]:
    
examples.normal_h2().plot(cmap='Greys_r')