Code Monkey home page Code Monkey logo

barplots's Introduction

barplots

Travis CI build SonarCloud Quality SonarCloud Maintainability Codacy Maintainability Maintainability Pypi project Pypi total project downloads

Python package to easily make barplots from multi-indexed dataframes.

How do I install this package?

As usual, just download it using pip:

pip install barplots

Tests Coverage

Since some software handling coverages sometime get slightly different results, here's three of them:

Coveralls Coverage SonarCloud Coverage Code Climate Coverate

Documentation

Most methods, in particular those exposed to user usage, are provided with doc strings. Consider reading these docstrings for learning the most recent updates to the library.

Usage examples

Here follows a set of examples of common usages. Basically, every graph show either the same data or a mean based on the provided group by indices. Choose whetever representation is best for visualizing your data, as hardly one is better than another for every possible dataset.

N.B. The data used in the following examples are randomly generated so to be useful for test porposes. DO NOT consider these values as valid results for experiments using the same labels (cell lines etc...) which are only used to show possible usages.

For every example, the considered dataframe df is loaded as follows:

import pandas as pd

df = pd.read_csv("tests/test_case.csv")

Also, for every example, the custom_defaults used to sanitize the labels specific to the used dataset is:

custom_defaults = {
    "P": "promoters",
    "E": "enhancers",
    "A": "active ",
    "I": "inactive ",
    "+": " and ",
    "": "anything",
    "Validation":"val"
}

Horizontal Example A

In the following example we will plot the bars horizontally, rotating the group labels by 90 degrees and displaying the bar labels as a shared legend.

from barplots import barplots

barplots(
    df,
    groupby=["task","model"],
    orientation="horizontal",
    show_legend=True,
    minor_rotation=90,
    custom_defaults=custom_defaults
)

Result can be seen here.

Horizontal Example B

In the following example we will plot the top index as multiple subplots with horizontal bars, rotating the group labels by 90 degrees and displaying the bar labels as a shared legend.

from barplots import barplots

barplots(
    df,
    groupby=["cell_line", "task","model"],
    orientation="horizontal",
    show_legend=True,
    subplots=True,
    minor_rotation=90,
    custom_defaults=custom_defaults
)

https://github.com/LucaCappelletti94/barplots/blob/master/examples/1/horizontal_legend_subplots_minor_rotation_val_auroc.png?raw=true

Horizontal Example C

In the following example we will plot horizontal bars, rotating the top group labels by 90 degrees and displaying the bar labels as minor ticks.

from barplots import barplots

barplots(
    df,
    groupby=["task","model"],
    orientation="horizontal",
    show_legend=False,
    major_rotation=90,
    custom_defaults=custom_defaults
)

Result can be seen here

Horizontal Example D

In the following example we will plot the top index as multiple subplots with horizontal bars, rotating the group labels by 90 degrees and displaying the bar labels as minor ticks.

from barplots import barplots

barplots(
    df,
    groupby=["cell_line", "task","model"],
    orientation="horizontal",
    show_legend=False,
    major_rotation=90,
    subplots=True,
    custom_defaults=custom_defaults
)

https://github.com/LucaCappelletti94/barplots/blob/master/examples/1/horizontal_subplots_major_rotation_val_auroc.png?raw=true

Vertical Example A

In the following example we will plot the bars vertically and displaying the bar labels as a shared legend.

from barplots import barplots

barplots(
    df,
    groupby=["task","model"],
    orientation="vertical",
    show_legend=True,
    custom_defaults=custom_defaults
)

Result can be seen here

Vertical Example B

In the following example we will plot the top index as multiple subplots with vertical bars and displaying the bar labels as a shared legend.

from barplots import barplots

barplots(
    df,
    groupby=["cell_line", "task","model"],
    orientation="vertical",
    show_legend=True,
    subplots=True,
    custom_defaults=custom_defaults
)

https://github.com/LucaCappelletti94/barplots/blob/master/examples/1/vertical_legend_subplots_val_auroc.png

Vertical Example C

In the following example we will plot vertical bars, rotating the minor group labels by 90 degrees and displaying the bar labels as minor ticks.

from barplots import barplots

barplots(
    df,
    groupby=["task","model"],
    orientation="vertical",
    show_legend=False,
    minor_rotation=90,
    custom_defaults=custom_defaults
)

Result can be seen here

Vertical Example D

In the following example we will plot the top index as multiple subplots with vertical bars, rotating the minor group labels by 90 degrees and displaying the bar labels as minor ticks.

from barplots import barplots

barplots(
    df,
    groupby=["cell_line", "task","model"],
    orientation="vertical",
    show_legend=False,
    minor_rotation=90,
    subplots=True,
    custom_defaults=custom_defaults
)

https://github.com/LucaCappelletti94/barplots/blob/master/examples/1/vertical_subplots_minor_rotation_val_auroc.png

Future features

Currently it is not possible to automatically detect labels overlap and rotate them. I will work on this feature when I get the time, currently you will need to use the parameters minor_rotation and major_rotation.

barplots's People

Contributors

lucacappelletti94 avatar zommiommy avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.