Skip to main content

Tiny package to make 'race' barplots using plotly

Project description

Test Python package

Making race plots with Plotly!

Motivation

Bar race plots, barchart race plots or simply race plots are very common when evaluating rankings over time. Python plotting is not the most user friendly and whenever I've wanted to make race plots I have ended up with tonnes of code for what is a simple plot in the end. I wish to remove that headache for many users that simply want to make quick plot and then move on.

Usage

Installation

raceplotly can be installed from pip.The only dependencies are pandas and plotly.

pip install raceplotly

Basic documentation

The package only contains one module called barplot. This module takes the following arguments at initialisation:

  • df: (type: pandas.DataFrame) dataframe from which to query data
  • item_column: (type: string) Name of column describing the items to be ranked (e.g. countries, corporations, names of people...)
  • value_column: (type: string) Name of column describing the value to be used for ranking (e.g. GDP, population, volume of sales...)
  • time_column: (type: string) Name of column describing the time variable. This must be a sequence (e.g. years, days). Support of Date format has not been tested yet.
  • top_entries: (type: numeric) Number of top entries to display (e.g. 5 for top 5 for any given time period...)

The barplot object contains one main method:

  • plot(title, orientation, item_label, value_label, time_label, frame_duration, date_format):
    • title: (type: string) Main title of the plot (static by default)
    • orientation: (type: string -> 'horizontal' or 'vertical') whether bars grow upwards ('vertical') or rightwards ('horizontal')
    • initial_frame: (type: numeric or string) Should either match one of the values from the time_column or be provided as min or max, in which case the initial frame would correspond to the minimum or maximum value of the time_column.
    • item_label: (type: string) Title of the axis corresponding to the item values
    • value_label: (type: string) Title of the axis corresponding to the value
    • time_label: (type: string) Title for the time axis which appears in each frame next to the formmated date/time variable
    • frame_duration: (type: int -> default 500) Frame and transition duration time in milliseconds
    • date_format: (type: str) Format for the displayed date/time, should be compatible with strftime format, see strftime reference.

Example plot: Top 10 crops from 1961 to 2018

See example notebooks under example/.

import pandas as pd
from raceplotly.plots import barplot

data = pd.read_csv('https://raw.githubusercontent.com/lc5415/raceplotly/main/example/FAOSTAT_data.csv')

my_raceplot = barplot(data,  item_column='Item', value_column='Value', time_column='Year')

my_raceplot.plot(item_label = 'Top 10 crops', value_label = 'Production quantity (tonnes)', frame_duration = 800)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

raceplotly-0.1.4.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

raceplotly-0.1.4-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file raceplotly-0.1.4.tar.gz.

File metadata

  • Download URL: raceplotly-0.1.4.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.2

File hashes

Hashes for raceplotly-0.1.4.tar.gz
Algorithm Hash digest
SHA256 406c1092b20f2fa668071fec4d6b7d9cfac6771c5608073be5548f2c12999999
MD5 6d6a1cef4e88c8cc60f7df1741486732
BLAKE2b-256 92bdaa527203d1d0a430f57382316b77a3b8a35685d18a5725d9e84a024c602a

See more details on using hashes here.

File details

Details for the file raceplotly-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: raceplotly-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 6.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.2

File hashes

Hashes for raceplotly-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 bbb38a231f662af649361290ccd6c8d349a887c3f49a7496c53fb3374284b653
MD5 bb210b035297e689dc07ee29f6ffe636
BLAKE2b-256 3060c0f22e6a9ae0d080529d132fb7fce976e1e30a55066494637136f8ac2ef0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page