You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Strip charts are like 1-dimensional jittered scatter plots.
26
+
display_as: statistical
27
+
language: python
28
+
layout: base
29
+
name: Strip Charts
30
+
order: 14
31
+
page_type: u-guide
32
+
permalink: python/strip-charts/
33
+
thumbnail: thumbnail/figure-labels.png
34
+
---
35
+
36
+
### Strip Charts with Plotly Express
37
+
38
+
[Plotly Express](/python/plotly-express/) is the easy-to-use, high-level interface to Plotly, which [operates on a variety of types of data](/python/px-arguments/) and produces [easy-to-style figures](/python/styling-plotly-express/).
39
+
40
+
The `px.strip()` function will make strip charts using underlying `box` traces with the box hidden.
41
+
42
+
See also [box plots](/python/box-plots/) and [violin plots](/python/violin/).
43
+
44
+
```python
45
+
import plotly.express as px
46
+
47
+
df = px.data.tips()
48
+
fig = px.strip(df, x="total_bill", y="day")
49
+
fig.show()
50
+
```
51
+
52
+
Strip charts support [faceting](/python/facet-plots/) and [discrete color](/python/discrete-color/):
0 commit comments