#!/usr/bin/env python # coding: utf-8 # ## Special cases # ### Geant4 analysis tools output # In[1]: from physt.compat.geant4 import load_csv # In[2]: get_ipython().run_line_magic('matplotlib', 'inline') # In[3]: h = load_csv("../tests/data/geant-h1.csv") h # In[4]: h.plot("line", stats_box=True); # In[5]: h2 = load_csv("../tests/data/geant-h2.csv") h # In[6]: h2.plot(show_zero=False)