newsworthycharts 1.73.2__py3-none-any.whl → 1.73.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- newsworthycharts/__init__.py +1 -1
- newsworthycharts/choroplethmap.py +8 -2
- newsworthycharts/serialchart.py +5 -0
- {newsworthycharts-1.73.2.dist-info → newsworthycharts-1.73.3.dist-info}/METADATA +32 -16
- {newsworthycharts-1.73.2.dist-info → newsworthycharts-1.73.3.dist-info}/RECORD +8 -8
- {newsworthycharts-1.73.2.dist-info → newsworthycharts-1.73.3.dist-info}/WHEEL +1 -1
- {newsworthycharts-1.73.2.dist-info → newsworthycharts-1.73.3.dist-info/licenses}/LICENSE.txt +0 -0
- {newsworthycharts-1.73.2.dist-info → newsworthycharts-1.73.3.dist-info}/top_level.txt +0 -0
newsworthycharts/__init__.py
CHANGED
@@ -140,9 +140,15 @@ class ChoroplethMap(Map):
|
|
140
140
|
if binning.counts[idx] == 1:
|
141
141
|
txt_val = fmt(cat)
|
142
142
|
elif idx == 0:
|
143
|
-
|
143
|
+
if self.units == "number":
|
144
|
+
txt_val = f"–{fmt(cat)}"
|
145
|
+
else:
|
146
|
+
txt_val = f"– {fmt(cat)}"
|
144
147
|
else:
|
145
|
-
|
148
|
+
if self.units == "number":
|
149
|
+
txt_val = f"{fmt(binning.bins[idx - 1])}–{fmt(cat)}"
|
150
|
+
else:
|
151
|
+
txt_val = f"{fmt(binning.bins[idx - 1])} – {fmt(cat)}"
|
146
152
|
patches.append(mpatches.Patch(color=mapper.to_rgba(cat), label=txt_val))
|
147
153
|
|
148
154
|
elif self.categorical:
|
newsworthycharts/serialchart.py
CHANGED
@@ -633,6 +633,11 @@ class SerialChart(Chart):
|
|
633
633
|
if ymin > self.baseline and self.allow_broken_y_axis:
|
634
634
|
self._mark_broken_axis()
|
635
635
|
|
636
|
+
"""
|
637
|
+
if all([x == "markers" for x in self.type]):
|
638
|
+
# ....
|
639
|
+
else:
|
640
|
+
"""
|
636
641
|
self._set_date_ticks(dates)
|
637
642
|
|
638
643
|
# Add labels in legend if there are multiple series, otherwise
|
@@ -1,28 +1,39 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: newsworthycharts
|
3
|
-
Version: 1.73.
|
3
|
+
Version: 1.73.3
|
4
4
|
Summary: Matplotlib wrapper to create charts and publish them on Amazon S3
|
5
5
|
Home-page: https://github.com/jplusplus/newsworthycharts
|
6
|
-
Download-URL: https://github.com/jplusplus/newsworthycharts/archive/1.73.
|
6
|
+
Download-URL: https://github.com/jplusplus/newsworthycharts/archive/1.73.3.tar.gz
|
7
7
|
Author: Jens Finnäs and Leo Wallentin, J++ Stockholm
|
8
8
|
Author-email: stockholm@jplusplus.org
|
9
9
|
License: MIT
|
10
10
|
Requires-Python: >=3.9
|
11
11
|
Description-Content-Type: text/x-rst
|
12
12
|
License-File: LICENSE.txt
|
13
|
-
Requires-Dist: boto3
|
14
|
-
Requires-Dist: matplotlib
|
15
|
-
Requires-Dist: langcodes
|
16
|
-
Requires-Dist: Babel
|
17
|
-
Requires-Dist: PyYAML
|
18
|
-
Requires-Dist: adjustText
|
19
|
-
Requires-Dist: numpy
|
20
|
-
Requires-Dist: python-dateutil
|
21
|
-
Requires-Dist: Pillow
|
22
|
-
Requires-Dist: requests
|
23
|
-
Requires-Dist: matplotlib-label-lines
|
24
|
-
Requires-Dist: geopandas
|
25
|
-
Requires-Dist: mapclassify
|
13
|
+
Requires-Dist: boto3>=1.26
|
14
|
+
Requires-Dist: matplotlib==3.10.3
|
15
|
+
Requires-Dist: langcodes>=3.3
|
16
|
+
Requires-Dist: Babel<3,>=2.14.0
|
17
|
+
Requires-Dist: PyYAML>=3
|
18
|
+
Requires-Dist: adjustText==1.3.0
|
19
|
+
Requires-Dist: numpy>2
|
20
|
+
Requires-Dist: python-dateutil<3,>=2
|
21
|
+
Requires-Dist: Pillow==11.2.1
|
22
|
+
Requires-Dist: requests>=2.22
|
23
|
+
Requires-Dist: matplotlib-label-lines==0.5.1
|
24
|
+
Requires-Dist: geopandas==1.0.1
|
25
|
+
Requires-Dist: mapclassify==2.8.1
|
26
|
+
Dynamic: author
|
27
|
+
Dynamic: author-email
|
28
|
+
Dynamic: description
|
29
|
+
Dynamic: description-content-type
|
30
|
+
Dynamic: download-url
|
31
|
+
Dynamic: home-page
|
32
|
+
Dynamic: license
|
33
|
+
Dynamic: license-file
|
34
|
+
Dynamic: requires-dist
|
35
|
+
Dynamic: requires-python
|
36
|
+
Dynamic: summary
|
26
37
|
|
27
38
|
This module contains methods for producing graphs and publishing them on Amazon S3, or in the location of your choice.
|
28
39
|
|
@@ -273,6 +284,11 @@ Roadmap
|
|
273
284
|
Changelog
|
274
285
|
---------
|
275
286
|
|
287
|
+
- 1.73.3
|
288
|
+
|
289
|
+
- Remove space around endash in legend title for unitless choropleth maps
|
290
|
+
- matplotlib==3.10.3
|
291
|
+
|
276
292
|
- 1.73.2
|
277
293
|
|
278
294
|
- Fix month locator bug for very short series
|
@@ -1,15 +1,15 @@
|
|
1
|
-
newsworthycharts/__init__.py,sha256=
|
1
|
+
newsworthycharts/__init__.py,sha256=TC8hN10fEAtJgsSLmTnA8hTqJ_BMQ5nG4NmxC2ImLW4,1221
|
2
2
|
newsworthycharts/bubblemap.py,sha256=nkocWmpiFgfjEuJGAsthjY5X7Q56jXWsZHUGXw4PwgE,2587
|
3
3
|
newsworthycharts/categoricalchart.py,sha256=Vr-0yFms0hEVCeUa3vLt3FYBqpX4xLQ8YGPc4LGQN_A,18368
|
4
4
|
newsworthycharts/chart.py,sha256=ebPLEIFAlUrE7N7n0aIqkzayKHHguuF0rVkXDK3OpJU,35393
|
5
|
-
newsworthycharts/choroplethmap.py,sha256=
|
5
|
+
newsworthycharts/choroplethmap.py,sha256=mhbN0XjP4GIgiZOjFWPMbyUI94iVOgwZc7wQSWPzMDM,9688
|
6
6
|
newsworthycharts/datawrapper.py,sha256=RRkAVTpfP4updKxUIBaSmKuBi2RUVPaBRF8HDQhlGGA,11250
|
7
7
|
newsworthycharts/map.py,sha256=EGh96tU10y7Kgu1e83_VWQSeABdjP6V-0VM6VTHDxu4,6089
|
8
8
|
newsworthycharts/rangeplot.py,sha256=NE1W9TnmlpK6T3RvBJOU3nd73EXqkj17OY9i5zlw_cQ,8366
|
9
9
|
newsworthycharts/rankchart.py,sha256=vMzNMVOv1jae6wuHC_riAdb1lm9oPltO3TT3YQpc0Oc,9376
|
10
10
|
newsworthycharts/scatterplot.py,sha256=weHubdMsDGaBTXejg2TqBNPTQ1K-QBpZqJiyQ8EOEc4,5084
|
11
11
|
newsworthycharts/seasonalchart.py,sha256=rr55yqJUkaYDR9Ik98jes6574oY1U8t8LwoLE3gClW4,1967
|
12
|
-
newsworthycharts/serialchart.py,sha256=
|
12
|
+
newsworthycharts/serialchart.py,sha256=Km1qxTumFq0GcKPzdaaU5mhq9f2BtusQ0tbpW6WsMiw,31936
|
13
13
|
newsworthycharts/storage.py,sha256=myERhlpvXyExXxUByBq9eW1bWkCyfH9SwTZbsWSyy3Q,4301
|
14
14
|
newsworthycharts/stripechart.py,sha256=9B6PX2MyLuKNQ8W0OGdKbP0-U32kju0K_NHHwwz_J68,1547
|
15
15
|
newsworthycharts/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -29,8 +29,8 @@ newsworthycharts/rc/newsworthy,sha256=yOIZvYS6PG1u19VMcdtfj9vbihKQsey5IprwqK59Kg
|
|
29
29
|
newsworthycharts/translations/datawrapper_regions.csv,sha256=fzZcQRX6RFMlNNP8mpgfYNdR3Y0QAlQxDXk8FXTaWWI,9214
|
30
30
|
newsworthycharts/translations/regions.py,sha256=Nv1McQjggD4S3JRu82rDMTG3pqUVR13E5-FBpSYbm98,239
|
31
31
|
newsworthycharts/translations/se_municipalities.csv,sha256=br_mm-IvzQtj_W55_ATREhJ97jWnCweBFlDAVY2EBxA,7098
|
32
|
-
newsworthycharts-1.73.
|
33
|
-
newsworthycharts-1.73.
|
34
|
-
newsworthycharts-1.73.
|
35
|
-
newsworthycharts-1.73.
|
36
|
-
newsworthycharts-1.73.
|
32
|
+
newsworthycharts-1.73.3.dist-info/licenses/LICENSE.txt,sha256=Sq6kGICrehbhC_FolNdXf0djKjTpv3YqjFCIYsxdQN4,1069
|
33
|
+
newsworthycharts-1.73.3.dist-info/METADATA,sha256=hf-JPRBSbUkmr9H50g7yaVlf_sXSlH3JTx8XN77-Lyk,35006
|
34
|
+
newsworthycharts-1.73.3.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
35
|
+
newsworthycharts-1.73.3.dist-info/top_level.txt,sha256=dn_kzIj8UgUCMsh1PHdVEQJHVGSsN7Z8YJF-8xXa8n0,17
|
36
|
+
newsworthycharts-1.73.3.dist-info/RECORD,,
|
{newsworthycharts-1.73.2.dist-info → newsworthycharts-1.73.3.dist-info/licenses}/LICENSE.txt
RENAMED
File without changes
|
File without changes
|