Skip to content

Commit

Permalink
Merge pull request #70 from hsf-training/eduardo-rodrigues-patch-1
Browse files Browse the repository at this point in the history
Update 05-histograms.md
  • Loading branch information
eduardo-rodrigues authored Jul 23, 2024
2 parents 6159541 + cb02083 commit d14e9dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _episodes/05-histograms.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ In addition to the same bin contents and edges as NumPy, Matplotlib includes a p

The main feature that these functions lack (without some effort) is refillability. High-energy physicists usually want to fill histograms with more data than can fit in memory, which means setting bin intervals on an empty container and filling it in batches (sequentially or in parallel).

Boost-histogram is a library designed for that purpose:
Boost-histogram is a library designed for that purpose. It is intended as an infrastructure component. You can explore its "low-level" functionality upon importing it:

```python
import boost_histogram as bh
```

This library is intended as an infrastructure component; a more user-friendly layer (with plotting, for instance) is provided by a library called "hist."
A more user-friendly layer (with plotting, for instance) is provided by a library called "hist."

```python
import hist
Expand Down

0 comments on commit d14e9dc

Please sign in to comment.