Skip to content

pandas_alive v0.1.13

Compare
Choose a tag to compare
@JackMcKew JackMcKew released this 21 May 07:09
  • New chart type introduced: Bubble Charts, to be used with MultiIndexed DataFrames.

    • Bubble charts support x & y axis by data inside MultiIndex (x_data_label & y_data_label)
    • Bubble charts support size & color optionally by data inside DataFrame (size_data_label & color_data_label)
  • New chart type introduced: Scatter Chart

  • New chart type introduced: Bar Chart, create animated bar charts with time as the x-axis

  • QOL improvements for warnings & errors

  • Line charts now support filling underneath to mimic an area chart df.plot_animated(kind="line",fill_under_line_color="red")

  • Line charts now support event labelling with perpendicular bars

    df.plot_animated(
                kind='line',
                label_events={
                    'Ruby Princess Disembark':datetime.strptime("19/03/2020", "%d/%m/%Y"),
                    'Lockdown':datetime.strptime("31/03/2020", "%d/%m/%Y")
                },
            )