This julia package was created in a scope of Data Analysis course in Ruhr University Bochum (WS 2024/25). It contains basis function for working with statistical distribution, sampling and fitting.
It's a not a package that does one thing, rather a collection of useful tools. The package has many dependencies (see Project.toml), so in the future it might get tired apart into smaller packages.
It's not a registered package. To install it, you can use the following command:
using Pkg
Pkg.add(PackageSpec(url="https://github.com/RUB-EP1/HighEnergyTools.jl.git"))
#
using HighEnergyToolsThe unit tests in test/runtests.jl are run with the following command:
import Pkg
Pkg.test("HighEnergyTools")Run the visual tests in test/test-visual.jl by running the file in REPL.
include("test/test-visual.jl")