Metadata-Version: 2.1
Name: histoboxplot
Version: 1.2
Summary: A Python package to create combined histogram and boxplot visualization
Home-page: https://github.com/atugharajohn/HistoBoxPlot
Author: John Atughara
Author-email: atugharajohn@gmail.com
License: Apache License, Version 2.0
Keywords: histogram boxplot visualization matplotlib seaborn
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: matplotlib>=3.1.1
Requires-Dist: seaborn>=0.9.0

# HistoBoxPlot

histoboxplot is a Python package for creating combined histogram and boxplot visualizations. This tool is particularly useful for exploratory data analysis and presenting data distributions clearly and concisely.

## Installation

To install histoboxplot, run the following command:

pip install histoboxplot


## Usage

Here's a simple example of how to use HistoBoxPlot:

```python
import pandas as pd
from histoboxplot import histoboxplot

# Sample DataFrame
data = pd.DataFrame({
    'feature': [your data here]
})

# Create the plot
histoboxplot(data, 'feature')

Requirements
Python 3.6 or higher
matplotlib
seaborn
Contributing
Contributions to HistoBoxPlot are welcome! Please read the contributing guidelines.

License
This project is licensed under the Apache License.

Contact
If you have any questions or feedback, please contact me at If you have any questions or feedback, please contact me at atugharajohn@gmail.com.
