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_plotsproduces quick histogram and density visualizations, whileseaborn_plotsoffers convenient helpers for Seaborn charts. - File handling:
get_files_from_webdownloads data sets and other resources with a single call. - Text styling:
text_color_fncadds color to terminal output for clearer command-line interaction. - Media conversion:
img_to_mp4turns image sequences into MP4 videos.
To install the package, run the following command:
pip install arcanumpyimport 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.
