Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit ecbc8d6

Browse files
ready to release
1 parent f4ca942 commit ecbc8d6

File tree

6 files changed

+8856
-4894
lines changed

6 files changed

+8856
-4894
lines changed

gallery.ipynb

+1,691-1,300
Large diffs are not rendered by default.

plotly_express/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
`plotly_express` is a terse, consistent, high-level wrapper around `plotly` for rapid \
3-
data exploration and figure generation.
3+
data exploration and figure generation. See the gallery at https://plotly.github.io/plotly_express
44
"""
55

66
from ._chart_types import ( # noqa: F401

plotly_express/_core.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -681,10 +681,13 @@ def make_figure(args, constructor, trace_patch={}, layout_patch={}):
681681
for trace_spec in trace_specs:
682682
constructor = trace_spec.constructor
683683
if constructor in [go.Scatter, go.Scatterpolar]:
684-
if args["render_mode"] == "webgl" or (
685-
args["render_mode"] == "auto"
686-
and len(args["data_frame"]) > 1000
687-
and args["animation_frame"] is None
684+
if "render_mode" in args and (
685+
args["render_mode"] == "webgl"
686+
or (
687+
args["render_mode"] == "auto"
688+
and len(args["data_frame"]) > 1000
689+
and args["animation_frame"] is None
690+
)
688691
):
689692
constructor = (
690693
go.Scattergl if constructor == go.Scatter else go.Scatterpolargl

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pandas>=0.20.0
2-
plotly>=3.7.0
2+
plotly>=3.7.1
33
statsmodels>=0.9.0
44
scipy >= 0.14 # from statsmodels

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="plotly_express",
18-
version="0.1a8",
18+
version="0.1",
1919
description="Plotly Express: a high level wrapper for Plotly.py",
2020
long_description=long_description,
2121
long_description_content_type="text/markdown",
@@ -32,7 +32,7 @@
3232
install_requires=[
3333
"pandas>=0.20.0",
3434
"plotly>=3.6.0",
35-
"plotly>=3.7.0",
35+
"plotly>=3.7.1",
3636
"statsmodels>=0.9.0",
3737
"scipy >= 0.14",
3838
],

walkthrough.ipynb

+7,154-3,586
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)