arcanumpy bundles utility functions for plotting (e.g., histogram_plots
, seaborn_plots
), file handling (get_files_from_web
), and text styling (text_color_fnc
).
- Plotting:
histogram_plots
produces quick histogram and density visualizations, whileseaborn_plots
offers convenient helpers for Seaborn charts. - File handling:
get_files_from_web
downloads data sets and other resources with a single call. - Text styling:
text_color_fnc
adds color to terminal output for clearer command-line interaction. - Media conversion:
img_to_mp4
turns image sequences into MP4 videos.
To install the package, run the following command:
pip install arcanumpy
import numpy as np
from arcanumpy.histogram_plots import hist_plots
data = np.random.randn(1000)
bins, pdf = hist_plots().calc_pdf(input_array=data, plot_pdf=True)
Visit the documentation for more information on how to use the package.