Revision 2b5f5a96c7773defc8d27881d3aab9dced2b9e60 authored by ferdymercury on 11 April 2024, 21:11:49 UTC, committed by GitHub on 11 April 2024, 21:11:49 UTC
* [hist] THn: Add GetBinCenter and Integral helper methods

Fixes https://github.com/root-project/root/issues/14173

* [hist] modernize C++ code

thanks!

Co-authored-by: Vincenzo Eduardo Padulano <v.e.padulano@gmail.com>

[hist,skip-ci] highlight difference wrt ComputeIntegral

* [hist] add test functionality for THn Integral and GetBinCenter
1 parent b241184
Raw File
requirements.txt
# ROOT requirements for third-party Python packages

# PyROOT: Interoperability with numpy arrays
# TMVA: PyMVA interfaces
numpy>=1.4.1
scikit-learn
xgboost

# PyROOT: ROOT.Numba.Declare decorator
numba>=0.47.0 ; python_version < "3.11" # See https://github.com/numba/numba/issues/8304
numba>=0.57.0 ; python_version >= "3.11" and python_version < "3.12"
# Not yet released.
# numba>=0.59 ; python_version >= "3.12"
cffi>=1.9.1

# Notebooks: ROOT C++ kernel
notebook>=4.4.1
metakernel>=0.20.0

# Distributed RDataFrame
pyspark>=2.4 # Spark backend
dask>=2022.08.1 ; python_version >= "3.8" # Dask backend
distributed>=2022.08.1 ; python_version >= "3.8" # Dask backend
back to top