Skip to content

Commit 3908788

Browse files
emmanuellejonmmease
authored andcommitted
Ternary contour plot (#1413)
Prototype of Ternary contour figure factory
1 parent 15aff13 commit 3908788

File tree

4 files changed

+599
-0
lines changed

4 files changed

+599
-0
lines changed

Diff for: plotly/figure_factory/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ It is often not a good idea to put all your code into your `create_foo()` functi
142142

143143
It is best to make all other functions besides `create_foo()` secret so a user cannot access them. This is done by placing a `_` before the name of the function, so `_aux_func()` for example.
144144

145+
6. Tests
146+
147+
Add unit tests in
148+
`plotly/tests/test_optional/test_figure_factory/test_figure_factory.py`.
145149

146150
## Create a Pull Request
147151

Diff for: plotly/figure_factory/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from plotly.figure_factory._scatterplot import create_scatterplotmatrix
1919
from plotly.figure_factory._streamline import create_streamline
2020
from plotly.figure_factory._table import create_table
21+
from plotly.figure_factory._ternary_contour import create_ternary_contour
2122
from plotly.figure_factory._trisurf import create_trisurf
2223
from plotly.figure_factory._violin import create_violin
2324
if optional_imports.get_module('pandas') is not None:

0 commit comments

Comments
 (0)