Skip to content

Commit d593b70

Browse files
tweaks and changelog
1 parent 0634067 commit d593b70

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## UNRELEASED
66

7+
### Added
8+
9+
- `text_auto` argument to `px.bar`, `px.histogram`, `px.density_heatmap`, `px.imshow` [#3518](https://github.com/plotly/plotly.py/issues/3518)
10+
- Deprecated `ff.create_annotated_heatmap`, `ff.create_county_choropleth`, `ff.create_gantt` [#3518](https://github.com/plotly/plotly.py/issues/3518)
11+
712
### Updated
813
- Updated Plotly.js to from version 2.6.3 to version 2.8.1. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#280----2021-12-10) for more information. Notable changes include:
914
- Horizontal color bars

Diff for: doc/python/county-choropleth.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ This page describes a [legacy "figure factory" method](/python/figure-factories/
4141

4242

4343
#### Required Packages
44-
`plotly_geo`, `pyshp` and `shapely` must be installed for this figure factory.
44+
`plotly_geo`, `geopandas`, `pyshp` and `shapely` must be installed for this figure factory to run.
4545

4646
Run the following commands to install the correct versions of the following modules:
4747

4848
```python
49-
!pip install plotly-geo
49+
!pip install plotly-geo==1.0.0
5050
!pip install geopandas==0.3.0
5151
!pip install pyshp==1.2.10
5252
!pip install shapely==1.6.3

Diff for: doc/python/figure-factories.md

-3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,3 @@ Deprecated "legacy" Figure Factories include:
5858

5959
For more information about the contents of `plotly.figure_factory`, including deprecated methods, please refer to our [API Reference documentation](https://plotly.com/python-api-reference/plotly.figure_factory.html).
6060

61-
```python
62-
63-
```

Diff for: doc/python/heatmaps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Plotly supports two different types of colored-tile heatmaps:
4848

4949

5050
<!-- #region -->
51-
The `px.imshow()` can be used to display heatmaps (as well as full-color images, as its name suggests). It accepts both array-like objects like lists of lists and `numpy` or `xarray` arrays, as well as `pandas.DataFrame` objects.
51+
The `px.imshow()` function can be used to display heatmaps (as well as full-color images, as its name suggests). It accepts both array-like objects like lists of lists and `numpy` or `xarray` arrays, as well as `pandas.DataFrame` objects.
5252

5353

5454
> For more examples using `px.imshow`, including examples of faceting and animations, as well as full-color image display, see the [the `imshow` documentation page](/python/imshow).

0 commit comments

Comments
 (0)