A Python package for data visualization, including interactive and custom graphs.
- Creation of line, bar, and scatter graphs.
- Interactive view with zoom and pan support.
- Export of graphics to PNG, SVG, and PDF formats.
You can install the package directly from PyPI:
pip install data-visualization-package==0.1.5Basic example on how to use the package: from data_visualization_package.data_loader import load_csv from data_visualization_package.plotter import plot_line
df = load_csv('path/to/your_data.csv')
plot_line(df, 'x_column', 'y_column')
Parameters
- file_path: The path to the CSV file you want to load.
- dataframe: The DataFrame containing your data.
- x_column: The name of the column to be used for the x-axis.
Supported Graphs
- Line Graphs
- Bar Graphs
- Scatter Graphs
Install pytest:
pip install pytestRun the Tests:
python -m pytest tests/This project was developed with the help of OpenAI's ChatGPT, which contributed to defining the scope and provided implementation suggestions. Using AI tools like ChatGPT helped streamline the development process and refine the package's functionality.