Skip to content

Commit 65a8c07

Browse files
committed
dash bio test
1 parent a0941bf commit 65a8c07

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

doc/python/bio-test.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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+
```

0 commit comments

Comments
 (0)