in the meanwhile you can manually use PythonCall + uproot
to get it if you really want
julia> using PythonCall
julia> up = pyimport("uproot")
Python: <module 'uproot' from '/tmp/jl_nrWpqL/.CondaPkg/env/lib/python3.12/site-packages/uproot/__init__.py'>
julia> up.open("/tmp/hepdata-example.root")["hpx"]
Python: <TH1F (version 1) at 0x7c597ddc7a40>
julia> up.open("/tmp/hepdata-example.root")["hpx"].to_numpy()
Python:
(array([2.000e+00, 3.000e+00, 1.000e+00, 1.000e+00, 2.000e+00, 4.000e+00,
6.000e+00, 1.200e+01, 8.000e+00, 9.000e+00, 1.500e+01, 1.500e+01,
3.100e+01, 3.500e+01, 4.000e+01, 6.400e+01, 6.400e+01, 8.100e+01,
1.080e+02, 1.240e+02, 1.560e+02, 1.650e+02, 2.090e+02, 2.620e+02,
2.970e+02, 3.920e+02, 4.320e+02, 4.660e+02, 5.210e+02, 6.040e+02,
6.570e+02, 7.880e+02, 9.030e+02, 1.079e+03, 1.135e+03, 1.160e+03,
1.383e+03, 1.458e+03, 1.612e+03, 1.770e+03, 1.868e+03, 1.861e+03,
1.946e+03, 2.114e+03, 2.175e+03, 2.207e+03, 2.273e+03, 2.276e+03,
2.329e+03, 2.325e+03, 2.381e+03, 2.417e+03, 2.364e+03, 2.284e+03,
2.188e+03, 2.164e+03, 2.130e+03, 1.940e+03, 1.859e+03, 1.763e+03,
1.700e+03, 1.611e+03, 1.459e+03, 1.390e+03, 1.237e+03, 1.083e+03,
1.046e+03, 8.880e+02, 7.520e+02, 7.420e+02, 6.730e+02, 5.550e+02,
5.330e+02, 3.660e+02, 3.780e+02, 2.720e+02, 2.560e+02, 2.000e+02,
1.740e+02, 1.320e+02, 1.180e+02, 1.000e+02, 8.900e+01, 8.600e+01,
3.900e+01, 3.700e+01, 2.500e+01, 2.300e+01, 2.000e+01, 1.600e+01,
1.400e+01, 9.000e+00, 1.300e+01, 8.000e+00, 2.000e+00, 2.000e+00,
6.000e+00, 1.000e+00, 0.000e+00, 1.000e+00], dtype=float32), array([-4. , -3.92, -3.84, -3.76, -3.68, -3.6 , -3.52, -3.44, -3.36,
-3.28, -3.2 , -3.12, -3.04, -2.96, -2.88, -2.8 , -2.72, -2.64,
-2.56, -2.48, -2.4 , -2.32, -2.24, -2.16, -2.08, -2. , -1.92,
-1.84, -1.76, -1.68, -1.6 , -1.52, -1.44, -1.36, -1.28, -1.2 ,
-1.12, -1.04, -0.96, -0.88, -0.8 , -0.72, -0.64, -0.56, -0.48,
-0.4 , -0.32, -0.24, -0.16, -0.08, 0. , 0.08, 0.16, 0.24,
0.32, 0.4 , 0.48, 0.56, 0.64, 0.72, 0.8 , 0.88, 0.96,
1.04, 1.12, 1.2 , 1.28, 1.36, 1.44, 1.52, 1.6 , 1.68,
1.76, 1.84, 1.92, 2. , 2.08, 2.16, 2.24, 2.32, 2.4 ,
2.48, 2.56, 2.64, 2.72, 2.8 , 2.88, 2.96, 3.04, 3.12,
3.2 , 3.28, 3.36, 3.44, 3.52, 3.6 , 3.68, 3.76, 3.84,
3.92, 4. ]))