newsworthycharts 1.67.0__py3-none-any.whl → 1.68.1__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/categoricalchart.py +7 -4
- newsworthycharts/chart.py +4 -1
- newsworthycharts/lib/datalist.py +6 -3
- {newsworthycharts-1.67.0.dist-info → newsworthycharts-1.68.1.dist-info}/METADATA +14 -3
- {newsworthycharts-1.67.0.dist-info → newsworthycharts-1.68.1.dist-info}/RECORD +9 -9
- {newsworthycharts-1.67.0.dist-info → newsworthycharts-1.68.1.dist-info}/LICENSE.txt +0 -0
- {newsworthycharts-1.67.0.dist-info → newsworthycharts-1.68.1.dist-info}/WHEEL +0 -0
- {newsworthycharts-1.67.0.dist-info → newsworthycharts-1.68.1.dist-info}/top_level.txt +0 -0
newsworthycharts/__init__.py
CHANGED
@@ -29,7 +29,7 @@ class CategoricalChart(Chart):
|
|
29
29
|
self.show_ticks = False
|
30
30
|
|
31
31
|
if len(self.data) > 1:
|
32
|
-
subaxes = self._fig.subplots(1, len(self.data))
|
32
|
+
subaxes = self._fig.subplots(1, len(self.data), subplot_kw={"zorder": -1})
|
33
33
|
patches = []
|
34
34
|
for idx, serie in enumerate(self.data):
|
35
35
|
if len(self.data) == 1:
|
@@ -52,18 +52,21 @@ class CategoricalChart(Chart):
|
|
52
52
|
labels=labels if legend_placement == "inline" else None,
|
53
53
|
startangle=90,
|
54
54
|
colors=colors,
|
55
|
-
explode=explode
|
55
|
+
explode=explode,
|
56
56
|
)
|
57
57
|
if idx == 0:
|
58
58
|
patches += _pie[0]
|
59
|
-
|
59
|
+
if len(self.data) > 1:
|
60
|
+
subax.axis('equal')
|
60
61
|
# `labels` in pie charts are used to label the series, not the values
|
61
62
|
if self.labels:
|
62
63
|
subax.set_title(self.labels[idx], loc='center', y=0)
|
63
64
|
if legend_placement == "inline":
|
64
65
|
self.legend = False
|
65
66
|
elif legend_placement == "legend":
|
66
|
-
self.ax.legend(patches, labels, loc='best', frameon=True, fancybox=True)
|
67
|
+
_ = self.ax.legend(patches, labels, loc='best', frameon=True, fancybox=True)
|
68
|
+
_.set(zorder=20)
|
69
|
+
# self.ax.figure.subplots_adjust()
|
67
70
|
elif legend_placement == "outside":
|
68
71
|
_ = self.ax.legend(patches, labels, bbox_to_anchor=(1.04, 1), loc="upper left")
|
69
72
|
_.set(zorder=20)
|
newsworthycharts/chart.py
CHANGED
@@ -504,6 +504,9 @@ class Chart(object):
|
|
504
504
|
except AttributeError:
|
505
505
|
# values is undefined for catCharts
|
506
506
|
pass
|
507
|
+
except ValueError:
|
508
|
+
# non-numerical data
|
509
|
+
pass
|
507
510
|
if all_integers:
|
508
511
|
self.decimals = 0
|
509
512
|
else:
|
@@ -648,7 +651,7 @@ class Chart(object):
|
|
648
651
|
# ticks labels
|
649
652
|
tick_label_height
|
650
653
|
# some padding
|
651
|
-
|
654
|
+
+ 15 / self._h
|
652
655
|
# chart notes (if any)
|
653
656
|
+ self._note_rel_height
|
654
657
|
# chart caption and logo (if any)
|
newsworthycharts/lib/datalist.py
CHANGED
@@ -176,9 +176,12 @@ class DataSet(MutableSequence):
|
|
176
176
|
self.extend(list(args))
|
177
177
|
|
178
178
|
def check(self, v):
|
179
|
-
# Update metadata with newly added data
|
180
|
-
|
181
|
-
|
179
|
+
# Update metadata with newly added data, if numerical
|
180
|
+
try:
|
181
|
+
values = [to_float(x[1]) for x in v]
|
182
|
+
values = [x for x in values if x is not None]
|
183
|
+
except ValueError:
|
184
|
+
values = None
|
182
185
|
if values:
|
183
186
|
self.min_val = min(self.min_val, min(values))
|
184
187
|
self.max_val = max(self.max_val, max(values))
|
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: newsworthycharts
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.68.1
|
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.
|
6
|
+
Download-URL: https://github.com/jplusplus/newsworthycharts/archive/1.68.1.tar.gz
|
7
7
|
Author: Jens Finnäs and Leo Wallentin, J++ Stockholm
|
8
8
|
Author-email: stockholm@jplusplus.org
|
9
9
|
License: MIT
|
@@ -11,7 +11,7 @@ Requires-Python: >=3.9
|
|
11
11
|
Description-Content-Type: text/x-rst
|
12
12
|
License-File: LICENSE.txt
|
13
13
|
Requires-Dist: boto3 >=1.26
|
14
|
-
Requires-Dist: matplotlib ==3.9.
|
14
|
+
Requires-Dist: matplotlib ==3.9.3
|
15
15
|
Requires-Dist: langcodes >=3.3
|
16
16
|
Requires-Dist: Babel <3,>=2.14.0
|
17
17
|
Requires-Dist: PyYAML >=3
|
@@ -259,6 +259,17 @@ Roadmap
|
|
259
259
|
Changelog
|
260
260
|
---------
|
261
261
|
|
262
|
+
- 1.68.1
|
263
|
+
|
264
|
+
- Fixed crash in `ChoroplethMap` with non-numerical values
|
265
|
+
- Fix Matplotlib version in setup.py
|
266
|
+
|
267
|
+
- 1.68.0
|
268
|
+
|
269
|
+
- Matplotlib==3.9.3
|
270
|
+
- More padding below chart
|
271
|
+
- Fix zorder issue in labeled multiple pie charts
|
272
|
+
|
262
273
|
- 1.67.0
|
263
274
|
|
264
275
|
- Fixed label margins in pie charts
|
@@ -1,7 +1,7 @@
|
|
1
|
-
newsworthycharts/__init__.py,sha256=
|
1
|
+
newsworthycharts/__init__.py,sha256=F3SsT4qDwn9ebj33Gty_CWJGsedd0eN8EtF3MDZmRvM,1160
|
2
2
|
newsworthycharts/bubblemap.py,sha256=nkocWmpiFgfjEuJGAsthjY5X7Q56jXWsZHUGXw4PwgE,2587
|
3
|
-
newsworthycharts/categoricalchart.py,sha256=
|
4
|
-
newsworthycharts/chart.py,sha256=
|
3
|
+
newsworthycharts/categoricalchart.py,sha256=YL3pzq8a7U5F0MpeRIAEwCAHw1BRDyKjoaAhf-UyRDo,18179
|
4
|
+
newsworthycharts/chart.py,sha256=jurOkIrm8TRpuL-Fj0AdBJXmjrdkZ-U2w_TaOysQvAs,34489
|
5
5
|
newsworthycharts/choroplethmap.py,sha256=bCLf4kcchp1C2djg5AxcOM8BdbaMj0xg7UHrZsDafhI,8013
|
6
6
|
newsworthycharts/datawrapper.py,sha256=RRkAVTpfP4updKxUIBaSmKuBi2RUVPaBRF8HDQhlGGA,11250
|
7
7
|
newsworthycharts/map.py,sha256=c409jEO4L8Yr780sJRC0RchR44roAlgOUDAkuk1SfRg,6057
|
@@ -16,7 +16,7 @@ newsworthycharts/custom/climate_cars.py,sha256=WyNLgjgRCv_zRrzVuk_BmcigFSzpzudjE
|
|
16
16
|
newsworthycharts/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
newsworthycharts/lib/color_fn.py,sha256=ck65GzTS9oPgHUCnKDwX2z8zlnNyzncw97MmhXwi8z8,1282
|
18
18
|
newsworthycharts/lib/colors.py,sha256=U04TDkvoMQkcldRFXfnwyLOTwq1SWW2se-Ad-DNcw9o,485
|
19
|
-
newsworthycharts/lib/datalist.py,sha256
|
19
|
+
newsworthycharts/lib/datalist.py,sha256=-LdGFE0SOvjLnIRZ6eoJoijDaG3SeUPNIDPBjbm5A2U,6433
|
20
20
|
newsworthycharts/lib/formatter.py,sha256=GNH43hE0bC17OgiV8LYH3YUrEhm7OJh9XzfSV4HVtHo,4838
|
21
21
|
newsworthycharts/lib/geography.py,sha256=K0_teFmuPJwXX7Py-amJB_1YY5_gL2kBYhz1LrRCyTg,584
|
22
22
|
newsworthycharts/lib/locator.py,sha256=rJHdgiA0LASRzdLINhTeU5zOoq1TCMgge4KOBWSagnM,3041
|
@@ -28,8 +28,8 @@ newsworthycharts/rc/newsworthy,sha256=yOIZvYS6PG1u19VMcdtfj9vbihKQsey5IprwqK59Kg
|
|
28
28
|
newsworthycharts/translations/datawrapper_regions.csv,sha256=fzZcQRX6RFMlNNP8mpgfYNdR3Y0QAlQxDXk8FXTaWWI,9214
|
29
29
|
newsworthycharts/translations/regions.py,sha256=Nv1McQjggD4S3JRu82rDMTG3pqUVR13E5-FBpSYbm98,239
|
30
30
|
newsworthycharts/translations/se_municipalities.csv,sha256=br_mm-IvzQtj_W55_ATREhJ97jWnCweBFlDAVY2EBxA,7098
|
31
|
-
newsworthycharts-1.
|
32
|
-
newsworthycharts-1.
|
33
|
-
newsworthycharts-1.
|
34
|
-
newsworthycharts-1.
|
35
|
-
newsworthycharts-1.
|
31
|
+
newsworthycharts-1.68.1.dist-info/LICENSE.txt,sha256=Sq6kGICrehbhC_FolNdXf0djKjTpv3YqjFCIYsxdQN4,1069
|
32
|
+
newsworthycharts-1.68.1.dist-info/METADATA,sha256=-IKPmEFJ4voMBH5obNcNZz_tcu3XShDR4e4SNuzjBzY,31487
|
33
|
+
newsworthycharts-1.68.1.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
34
|
+
newsworthycharts-1.68.1.dist-info/top_level.txt,sha256=dn_kzIj8UgUCMsh1PHdVEQJHVGSsN7Z8YJF-8xXa8n0,17
|
35
|
+
newsworthycharts-1.68.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|