랭킹으로 돌아가기

has2k1/plotnine

Pythonplotnine.org

A Grammar of Graphics for Python

plottinggrammargraphicspythondata-analysis
스타 성장
스타
4.7k
포크
252
주간 성장
이슈
82
2k4k
2017년 4월2020년 5월2023년 6월2026년 7월
아티팩트PyPIpip install plotnine
README

plotnine

Release License DOI Build Status Coverage

plotnine is an implementation of a grammar of graphics in Python based on ggplot2. The grammar allows you to compose plots by explicitly mapping variables in a dataframe to the visual characteristics (position, color, size etc.) of objects that make up the plot.

Plotting with a grammar of graphics is powerful. Custom (and otherwise complex) plots are easy to think about and build incrementally, while the simple plots remain simple to create.

To learn more about how to use plotnine, check out the documentation. Since plotnine has an API similar to ggplot2, where it lacks in coverage the ggplot2 documentation may be helpful.

Example

from plotnine import *
from plotnine.data import mtcars

Building a complex plot piece by piece.

  1. Scatter plot

    (
        ggplot(mtcars, aes("wt", "mpg"))
        + geom_point()
    )
    
  2. Scatter plot colored according some variable

    (
        ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
        + geom_point()
    )
    
  3. Scatter plot colored according some variable and smoothed with a linear model with confidence intervals.

    (
        ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
        + geom_point()
        + stat_smooth(method="lm")
    )
    
  4. Scatter plot colored according some variable, smoothed with a linear model with confidence intervals and plotted on separate panels.

    (
        ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
        + geom_point()
        + stat_smooth(method="lm")
        + facet_wrap("gear")
    )
    
  5. Adjust the themes

    I) Make it playful

    (
        ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
        + geom_point()
        + stat_smooth(method="lm")
        + facet_wrap("gear")
        + theme_xkcd()
    )
    

    II) Or professional

    (
        ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
        + geom_point()
        + stat_smooth(method="lm")
        + facet_wrap("gear")
        + theme_tufte()
    )
    

Installation

Official release

# Using pip
$ pip install plotnine             # 1. should be sufficient for most
$ pip install 'plotnine[extra]'    # 2. includes extra/optional packages
$ pip install 'plotnine[test]'     # 3. testing
$ pip install 'plotnine[doc]'      # 4. generating docs
$ pip install 'plotnine[dev]'      # 5. development (making releases)
$ pip install 'plotnine[all]'      # 6. everything

# Or using conda
$ conda install -c conda-forge plotnine

# Or using pixi
$ pixi init name-of-my-project
$ cd name-of-my-project
$ pixi add python plotnine

Development version

$ pip install git+https://github.com/has2k1/plotnine.git
$ brew install oxipng   # Test image optimiser (OR `cargo install oxipng`)

Contributing

Our documentation could use some examples, but we are looking for something a little bit special. We have two criteria:

  1. Simple looking plots that otherwise require a trick or two.
  2. Plots that are part of a data analytic narrative. That is, they provide some form of clarity showing off the geom, stat, ... at their differential best.

If you come up with something that meets those criteria, we would love to see it. See plotnine-examples.

If you discover a bug checkout the issues if it has not been reported, yet please file an issue.

And if you can fix a bug, your contribution is welcome.

Testing

Plotnine has tests that generate images which are compared to baseline images known to be correct. There may be small differences in the text rendering that throw off the image comparisons, and the tests allow some very small differences.

관련 저장소
matplotlib/matplotlib

matplotlib: plotting with Python

PythonPyPImatplotlibdata-visualization
matplotlib.org/stable/
23k8.4k
bokeh/bokeh

Interactive Data Visualization in the browser, from Python

TypeScriptnpmBSD 3-Clause "New" or "Revised" Licensebokehpython
bokeh.org
20.4k4.3k
rougier/scientific-visualization-book

An open access book on scientific visualization using python and matplotlib

PythonPyPIOtherpythonmatplotlib
labri.fr/perso/nrougier/
11.4k1k
leeoniya/uPlot

📈 A small, fast chart for time series, lines, areas, ohlc & bars

JavaScriptnpmMIT Licensetime-seriesohlc
10.3k461
ranaroussi/quantstats

Portfolio analytics for quants, written in Python

PythonPyPIApache License 2.0quantalgotrading
7.5k1.2k
ScottPlot/ScottPlot

Interactive plotting library for .NET

C#MIT Licenseplotplotting
scottplot.net
6.7k1k
epezent/implot

Immediate Mode Plotting

C++MIT Licenseimguiplotting-library
6.2k689
biolab/orange3

🍊 :bar_chart: :bulb: Orange: Interactive data analysis

PythonPyPIOtherdata-miningdata-science
orangedatamining.com
5.7k1.1k
asmuth/clip

Create charts from the command line

C++Apache License 2.0plottingplots
clip-lang.org
5.1k382
plotters-rs/plotters

A rust drawing library for high quality data plotting for both WASM and native, statically and realtimely 🦀 📈🚀

Rustcrates.ioMIT Licenserustvisualization
plotters-rs.github.io/home/
4.6k317
jtablesaw/tablesaw

Java dataframe and visualization library

JavaMavenApache License 2.0dataframedata-frame
jtablesaw.github.io/tablesaw/
3.8k649
pyvista/pyvista

3D visualization and mesh analysis for science and engineering

PythonPyPIMIT Licensevtkpython
docs.pyvista.org
3.8k640