Releases: JackMcKew/pandas_alive
Releases · JackMcKew/pandas_alive
pandas_alive v0.1.10
- Complete overhaul of backend with
_base_plot.py
, refactored all arguments - README & Examples generated from README.ipynb, converted with
nbconvert
- Docs generated only on release
- DataFrames interpolated to match animation length
- Scatter plot introduced
pandas_alive v0.1.9
Changelog
- Fix bar label plotting
- Update Docs to render cleanly on site
pandas_alive v0.1.8
Changelog
- Removed **kwargs from
multiple_animated_plot()
due to weird errors when passed toanim.save()
pandas-alive v0.1.7
Changelog
- Rename pandas-alive to pandas_alive for consistency
- Adjust subplot arguments in multiple animated plot function for flexibility in avoiding cropping as per https://stackoverflow.com/questions/10101700/moving-matplotlib-legend-outside-of-the-axis-makes-it-cutoff-by-the-figure-box
- Tests included - no CI/CD for tests as no ffmpeg/imagemagick on github actions
pandas-alive v0.1.6
Changelog
- Documentation included at https://jackmckew.github.io/pandas_alive/
- DPI functionality fixed
pandas-alive v0.1.5
Changelog
- Smoother reindexing/interpolation for line charts
pandas-alive v0.1.4
Changelog
- Styling now applied at the base plot level, ensuring consistent styling across plots
- Dates now formatted on axises with ConciseDateFormatter
pandas-alive v0.1.3
Changelog
pandas_alive.output_file()
deprecated in favour ofdf.plot_animated(filename='example.mp4')
and/ordf.plot_animated().save('example.mp4')
- HTML5 video method implemented with
df.plot_animated().get_html5_video()
, returns a HTML5 video instance - Amended bug with append_period_to_title for line charts