File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ jupyter :
3+ jupytext :
4+ notebook_metadata_filter : all
5+ text_representation :
6+ extension : .md
7+ format_name : markdown
8+ format_version : ' 1.2'
9+ jupytext_version : 1.3.1
10+ kernelspec :
11+ display_name : Python 3
12+ language : python
13+ name : python3
14+ language_info :
15+ codemirror_mode :
16+ name : ipython
17+ version : 3
18+ file_extension : .py
19+ mimetype : text/x-python
20+ name : python
21+ nbconvert_exporter : python
22+ pygments_lexer : ipython3
23+ version : 3.6.8
24+ plotly :
25+ description : Bio test description
26+ display_as : bio
27+ language : python
28+ layout : base
29+ name : Bio Test
30+ order : 1
31+ page_type : u-guide
32+ permalink : python/bio-test/
33+ thumbnail : thumbnail/hist2dcontour.png
34+ ---
35+
36+ ## 2D Histogram Contours or Density Contours
37+
38+ A 2D histogram contour plot, also known as a density contour plot, is a 2-dimensional generalization of a
39+
40+ ``` python
41+ import plotly.express as px
42+ df = px.data.tips()
43+
44+ fig = px.density_contour(df, x = " total_bill" , y = " tip" )
45+ fig.show()
46+ ```
You can’t perform that action at this time.
0 commit comments