Metadata-Version: 2.4
Name: analysis-tool
Version: 0.1.1
Summary: A generic analysis tool for various data analyses. Mainly for the analysis of the LHCb experiment.
Home-page: https://github.com/JieWu-GitHub/Analysis_tools
Author: Jie Wu
Author-email: j.wu@cern.ch
License: MIT
Keywords: HEP,physics,lhcb,data-analysis,root,tmva,xgboost
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Intended Audience :: Science/Research
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.24.0
Requires-Dist: pandas>=2.0.0
Requires-Dist: uproot>=5.0.0
Requires-Dist: awkward>=2.0.0
Requires-Dist: matplotlib>=3.7.0
Requires-Dist: scikit-learn>=1.3.0
Requires-Dist: xgboost>=1.0.0
Requires-Dist: tqdm>=4.0.0
Requires-Dist: rich>=10.0.0
Requires-Dist: uncertainties>=3.0.0
Provides-Extra: dev
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Analysis Tool

A generic analysis tool for various data analyses.

## Features

- Apply selection criteria to data
- Add multiple candidate labels
- Correlation analysis
- Reweighting and uncertainty analysis
- Plotting and visualization

## Installation
```bash
    # Install the package (full imstallation)
    python -m pip install .

    # Install the package in editable mode (does not support python intelligence automatically, extra efforts needed)
    python -m pip install -e .

    # Overwrite the old installation
    python -m pip install --force-reinstall .

    # Upgrade after each modification (the version number will increase)
    python -m pip install --upgrade .
```

