Skip to content

Commit 21882a5

Browse files
committed
more links
1 parent d5f93c2 commit 21882a5

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

python/histograms.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ jupyter:
3434
thumbnail: thumbnail/histogram.jpg
3535
---
3636

37+
In statistics, a [histogram](https://en.wikipedia.org/wiki/Histogram) is representation of the distribution of numerical data, where the data are binned and the count for each bin is represented. More generally, in plotly a histogram is an aggregated bar chart, with several possible aggregation functions (e.g. sum, average, count...). Also, the data to be binned can be numerical data but also categorical or date data.
38+
39+
If you're looking instead for bar charts, i.e. representing data with rectangular
40+
bar, go to the [Bar Chart tutorial](/python/bar-charts/).
41+
3742
## Histogram with Plotly Express
3843

39-
In statistics, a [histogram](https://en.wikipedia.org/wiki/Histogram) is representation of the distribution of numerical data, where the data are binned and the count for each bin is represented. More generally, in plotly a histogram is an aggregated bar chart, with several possible aggregation functions (e.g. sum, average, count...). Also, the data to be binned can be numerical data but also categorical or date data.
4044

4145
[Plotly Express](/python/plotly-express/) is the easy-to-use, high-level interface to Plotly, which [operates on "tidy" data](/python/px-arguments/).
4246

python/pie-charts.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ jupyter:
3535

3636
### Basic Pie Chart ###
3737

38-
A pie chart ``go.Pie`` object is a circular statistical chart, which is divided into sectors to illustrate numerical proportion. Data visualized by the sectors of the pie is set in `values`. The sector labels are set in `labels`. The sector colors are set in `marker.colors`.
38+
A pie chart ``go.Pie`` object is a circular statistical chart, which is divided into sectors to illustrate numerical proportion. Data visualized by the sectors of the pie is set in `values`. The sector labels are set in `labels`. The sector colors are set in `marker.colors`.
39+
40+
If you're looking instead for a multilevel hierarchical pie-like chart, go to the
41+
[Sunburst tutorial](/python/sunburst-charts/).
3942

4043
```python
4144
import plotly.graph_objects as go

0 commit comments

Comments
 (0)