An open source library for statistical plotting
Project description
Lets-Plot for Python
Latest Release | |
License | |
OS | Linux, MacOS, Windows |
Python versions | 3.6, 3.7, 3.8 |
Implementation Overview
The Lets-Plot python extension includes native backend and a Python API, which was mostly based on the ggplot2
package well-known to data scientists who use R.
R ggplot2
has extensive documentation and a multitude of examples and therefore is an excellent resource for those who want to learn the grammar of graphics.
Note that the Python API being very similar yet is different in detail from R. Although we have not implemented the entire ggplot2 API in our Python package, we have added a few new features to our Python API.
You can try the Lets-Plot library in Datalore. Lets-Plot is available in Datalore out-of-the-box and is almost identical to the one we ship as PyPI package. This is because Lets-Plot is an offshoot of the Datalore project from which it was extracted to a separate plotting library.
One important difference is that the python package in Datalore is named datalore.plot and the package you install from PyPI has name lets_plot.
The advantage of Datalore as a learning tool in comparison to Jupyter is that it is equipped with very friendly Python editor which comes with auto-completion, intentions, and other useful coding assistance features.
Installation
1. For Linux and Mac users:
To install the Lets-Plot library, run the following command:
pip install lets-plot
2. For Windows users:
Install Anaconda3 (or Miniconda3), then install MinGW toolchain to Conda:
conda install m2w64-toolchain
Install the Lets-Plot library:
pip install lets-plot
Quick start with Jupyter
To evaluate the plotting capabilities of Lets-Plot, add the following code to a Jupyter notebook:
import numpy as np
from lets_plot import *
LetsPlot.setup_html()
np.random.seed(12)
data = dict(
cond=np.repeat(['A','B'], 200),
rating=np.concatenate((np.random.normal(0, 1, 200), np.random.normal(1, 1.5, 200)))
)
ggplot(data, aes(x='rating', fill='cond')) + ggsize(500, 250) \
+ geom_density(color='dark_green', alpha=.7) + scale_fill_brewer(type='seq') \
+ theme(axis_line_y='blank')
Example Notebooks
Try the following examples to study more features of the Lets-Plot
library.
Quickstart and more
-
Quickstart in Jupyter: quickstart.ipynb
-
Histogram, density plot, box plot and facets: distributions.ipynb
-
Error-bars, crossbar, linerange, pointrange, points, lines, bars, dodge position: error_bars.ipynb
-
Points, point shapes, linear regression, jitter position: scatter_plot.ipynb
-
Smoothing: linear, LOESS: geom_smooth.ipynb
-
as_discrete()
function: geom_smooth.ipynb -
Points, density2d, polygons, density2df, bin2d: density_2d.ipynb
-
Tiles, contours, polygons, contourf: contours.ipynb
-
Raster geom, Image geom: image_fisher_boat.ipynb
-
Various presentation options: legend_and_axis.ipynb
GeoDataFrame support (Shapely and GeoPandas).
GeoPandas GeoDataFrame
is supported by the following geometry layers: geom_polygon
, geom_map
, geom_point
, geom_text
, geom_rect
.
-
Map building basics with Lets-Plot and GeoPandas: geopandas_naturalearth.ipynb
-
An inset map of Kotlin island: geopandas_kotlin_isl.ipynb
Nonstandard plotting functions
The following features of Lets-Plot
are not available or have different implementation in other Grammar of Graphics
libraries.
-
ggsize()
- sets the size of the plot. Used in many examples starting fromquickstart
. -
geom_density2df()
- fills space between equal density lines on a 2D density plot. Similar togeom_density2d
but supports thefill
aesthetic.Example: density_2d.ipynb
-
geom_contourf()
- fills space between the lines of equal level of the bivariate function. Similar togeom_contour
but supports thefill
aesthetic.Example: contours.ipynb
-
geom_image()
- displays an image specified by a ndarray with shape (n,m) or (n,m,3) or (n,m,4).Example: image_101.ipynb
Example: image_fisher_boat.ipynb
-
gg_image_matrix()
- a utility helping to combine several images into one graphical object.Example: image_matrix.ipynb
GGBanch
GGBunch allows to show a collection of plots on one figure. Each plot in the collection can have arbitrary location and size. There is no automatic layout inside the bunch.
Examples:
Data sampling
Sampling is a special technique of data transformation, which helps dealing with large datasets and overplotting.
Learn more about sampling in Lets-Plot.
Cloud-based notebooks
Examples:
Interesting demos
A set of interesting notebooks using Lets-Plot
library for visualization.
SVG/HTML export to file
export_svg
function takes plot specification and filename as parameters and saves SVG representation of the plot to
a file in the current working directory.
from lets_plot import *
p = ggplot()...
# export SVG to file
from lets_plot.export.simple import export_svg
export_svg(p, "p.svg")
Note: The simple.export_svg()
function do not save images of an interactive map
.
export_html
function takes plot specification and filename as parameters and saves dynamic HTML to a file in the current
working directory.
When viewing this content the internet connection is required.
export_html
has one more option - iframe
. If iframe=True
then Lets-PLot
will wrap output HTML into iframe
.
from lets_plot import *
p = ggplot()...
# export HTML to file
from lets_plot.export.simple import export_html
export_html(p, "p.htm")
Example notebook: export_SVG_HTML
Offline mode
In classic Jupyter notebook the LetsPlot.setup_html()
statement by default pre-loads Lets-Plot
JS library from CDN.
Alternatively, option offline=True
will force Lets-Plot
adding the full Lets-Plot JS bundle to the notebook.
In this case, plots in the notebook will be working without an Internet connection.
from lets_plot import *
LetsPlot.setup_html(offline=True)
Scientific mode in IntelliJ IDEA / PyCharm
Plugin "Lets-Plot in SciView" is available at the JetBrains Plugin Repository.
The plugin adds support for interactive plots in IntelliJ-based IDEs with the enabled Scientific mode.
To learn more about the plugin check: Lets-Plot in SciView plugin homepage.
What is new in 1.4.0
Interactive maps
Function geom_livemap()
enables a researcher to visualize geospatial information on interactive map.
When building interactive geospatial visualizations with Lets-Plot the visualisation workflow remains the
same as when building a regular ggplot2
plot.
However, geom_livemap()
creates an interactive base-map super-layer and certain limitations do apply
comparing to a regular ggplot2
geom-layer:
geom_livemap()
must be added as a 1-st layer in plot;- Maximum one
geom_livemap()
layer is alloed per plot; - Not any type of geometry can be combined with interactive map layer in one plot;
- Internet connection to map tiles provider is required.
The following ggplot2
geometry can be used with interactive maps:
geom_point
geom_rect
geom_path
geom_polygon
geom_segment
geom_text
geom_tile
geom_vline
,geon_hline
geom_bin2d
geom_contour
,geom_contourf
geom_density2d
,geom_density2df
Examples:
Function as_discrete()
The function as_discrete()
is used to annotate a numeric data series as categorical
data for the
purposes of given visualization.
Code example:
from lets_plot.mapping import as_discrete
mpg_plot + geom_point(aes(color='cyl'))\
+ geom_smooth(aes(color=as_discrete('cyl')), method='lm', deg=2, size=1)
Example notebook: geom_smooth.ipynb
Polynomial regression of arbitrary degree in geom_smooth
New parameter deg
in geom_smooth()
allows to adjust the degree of the model polynomial when
using linear model
smoothing method.
Code example:
# Apply 2nd degree polynomial regression
p + geom_smooth(method='lm', deg=2)
Example notebook: geom_smooth.ipynb
Hiding tooltips on axis
There are new parameters axis_tooltip
, axis_tooltip_x
and axis_tooltip_y
in the function theme()
which allow to hide tooltip on axis X, axis Y or on the both axis.
Code example:
# Hide tooltips on both axis.
p + theme(axis_tooltip='blank')
Change Log
See Lets-Plot at Github.
License
Code and documentation released under the MIT license. Copyright © 2019-2020, JetBrains s.r.o.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
File details
Details for the file lets_plot-1.4.2-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0.post20200106 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f7151843ee97d2a7c546524133c83263f6b520652a6bbbe1e4f78fba096007a |
|
MD5 | 7463e470ddcf8a2ef3ecb382645cbc12 |
|
BLAKE2b-256 | 3bafdd4f1869f11bb644a5811a3ef396c32a320bb678f5eee01be958e4fb91d6 |
File details
Details for the file lets_plot-1.4.2-cp38-cp38-manylinux1_x86_64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp38-cp38-manylinux1_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 301cc3f605d778bc015d76f1f6259a2e1e4df21d7ada0526685eb8dadced02ab |
|
MD5 | 2427c84ee0167aceb65fd7f54ea221c9 |
|
BLAKE2b-256 | 76375d71a26d683ee44d31725fbd9af7f5a633fc403b39251426257b3b90af0b |
File details
Details for the file lets_plot-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2.post20191201 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efb1be970ca44833fc24e42489dfefa14c7c04051d1c59535d2885b572ef8d55 |
|
MD5 | f54a819d65911c760b52d78baa85267a |
|
BLAKE2b-256 | 3ddaf6842f0159311b577dc87bf96ccd071a12c5146cc0de50ede38c4396d572 |
File details
Details for the file lets_plot-1.4.2-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0.post20200106 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d67f1d66a73cd7628c45a54011838b8b438610153050e74d673c384d0e5c820 |
|
MD5 | f22f7e0173f56c31c93643e2174222ec |
|
BLAKE2b-256 | 71174d2dce3987191f14275a333a7148b415ff403d3ca6af5c845065c9adde42 |
File details
Details for the file lets_plot-1.4.2-cp37-cp37m-manylinux1_x86_64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp37-cp37m-manylinux1_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 808115bbe33d0e399c4e6daf05b3b2a19158a5af92fe081850fe0a59994c8ba2 |
|
MD5 | df777f70433d43c6a8e2aaacf565d5e0 |
|
BLAKE2b-256 | 831e6c0246d6423818fc649937b2af2b4f9ea745a43ad1c9266f7cdd401be7f2 |
File details
Details for the file lets_plot-1.4.2-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2.post20191201 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88893827340bfe3fab44ae710b00a9f3eb5bab89feb93ca958efb8cf605e022e |
|
MD5 | 9b858fa12ab8c67f827299c80d3cb401 |
|
BLAKE2b-256 | b8b3a69461cc28352dccf54fb1dbff64645e62ab766235e36d0ad1ae27393439 |
File details
Details for the file lets_plot-1.4.2-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0.post20200106 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7231d5686870bd5935ad171ab7da2cc34f52930f46a9c00bfbf871cc5c65fc4b |
|
MD5 | 618eff333be32222b306ea5b08132816 |
|
BLAKE2b-256 | 3734ab489af07e6663f12ce2992027dcfc53b14a170e818af176b2b691611a46 |
File details
Details for the file lets_plot-1.4.2-cp36-cp36m-manylinux1_x86_64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp36-cp36m-manylinux1_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b2ad6a4807e3398848b4f5d508daf51cb682eb2ff7d218fe8f8942453cbbe09 |
|
MD5 | f3b26f90ce83455c7cdf3f14535ad5ee |
|
BLAKE2b-256 | 2f671ae34d2bcc74e71b1af0e148b797b8d4e3f34a78c0745e690f5dd28539bc |
File details
Details for the file lets_plot-1.4.2-cp36-cp36m-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: lets_plot-1.4.2-cp36-cp36m-macosx_10_7_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.6m, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2.post20191201 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed8f975d81f12f4298ba431353dd892869c4fd24f08e05bbfb8ea9c1d2034c5f |
|
MD5 | f82ca0784c8b5b1e0d4c53f7a0d53623 |
|
BLAKE2b-256 | a715bc386a2d67658ac85c29d241bb8b9b53c5a7f510cb86876f369078695693 |