newsworthycharts 1.63.3__py3-none-any.whl → 1.63.5__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/chart.py +13 -12
- {newsworthycharts-1.63.3.dist-info → newsworthycharts-1.63.5.dist-info}/METADATA +14 -3
- {newsworthycharts-1.63.3.dist-info → newsworthycharts-1.63.5.dist-info}/RECORD +7 -7
- {newsworthycharts-1.63.3.dist-info → newsworthycharts-1.63.5.dist-info}/LICENSE.txt +0 -0
- {newsworthycharts-1.63.3.dist-info → newsworthycharts-1.63.5.dist-info}/WHEEL +0 -0
- {newsworthycharts-1.63.3.dist-info → newsworthycharts-1.63.5.dist-info}/top_level.txt +0 -0
newsworthycharts/__init__.py
CHANGED
newsworthycharts/chart.py
CHANGED
@@ -396,7 +396,7 @@ class Chart(object):
|
|
396
396
|
d = num2date(x).isoformat()[:10]
|
397
397
|
# 9 years later
|
398
398
|
d2 = str(int(d[:4]) + 9) + d[4:]
|
399
|
-
if len(self.data.x_points) >
|
399
|
+
if len(self.data.x_points) > 5:
|
400
400
|
return formatter.date(d, "yy") + "–" + formatter.date(d2, "yy")
|
401
401
|
else:
|
402
402
|
return formatter.date(d, "y") + "–" + formatter.date(d2, "yy")
|
@@ -493,7 +493,13 @@ class Chart(object):
|
|
493
493
|
def flatten(list_of_lists):
|
494
494
|
return [item for sublist in list_of_lists for item in sublist]
|
495
495
|
|
496
|
-
|
496
|
+
all_integers = False
|
497
|
+
try:
|
498
|
+
all_integers = all([x.is_integer() for x in flatten(self.data.values)])
|
499
|
+
except AttributeError:
|
500
|
+
# values is undefined for catCharts
|
501
|
+
pass
|
502
|
+
if all_integers:
|
497
503
|
self.decimals = 0
|
498
504
|
else:
|
499
505
|
# Increase number of decimals until we have no duplicated y axis ticks,
|
@@ -519,18 +525,13 @@ class Chart(object):
|
|
519
525
|
# Remove duplicate y ticks (most should be gone as per above)
|
520
526
|
ticks = self.value_axis.get_ticklabels()
|
521
527
|
ticks_ = [x for (i, x) in enumerate(ticks) if ticks[i - 1].get_text() != x.get_text()]
|
522
|
-
if len(ticks_)
|
528
|
+
if len(ticks_) == 2 and self.data and self.data.max_val:
|
529
|
+
# When only two ticks we want them on top and bottom
|
530
|
+
self.value_axis.set_ticks([float(ticks[0]._y), self.data.max_val])
|
531
|
+
elif len(ticks_) < len(ticks):
|
523
532
|
y = [float(x._y) for x in ticks_]
|
524
|
-
if self.decimals == 0:
|
525
|
-
# Recrate with integres
|
526
|
-
import math
|
527
|
-
_bottom = min(y)
|
528
|
-
_top = math.ceil(max(y))
|
529
|
-
_bottom, _top = int(_bottom), int(_top)
|
530
|
-
y = range(_bottom, _top + 1)
|
531
|
-
y = [float(x) for x in y]
|
532
533
|
self.value_axis.set_ticks(y)
|
533
|
-
|
534
|
+
elif self.decimals == 0:
|
534
535
|
# remove non integer ticks
|
535
536
|
y = [float(x._y) for x in ticks]
|
536
537
|
y = [x for x in y if x.is_integer()]
|
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: newsworthycharts
|
3
|
-
Version: 1.63.
|
3
|
+
Version: 1.63.5
|
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.63.
|
6
|
+
Download-URL: https://github.com/jplusplus/newsworthycharts/archive/1.63.5.tar.gz
|
7
7
|
Author: Jens Finnäs and Leo Wallentin, J++ Stockholm
|
8
8
|
Author-email: stockholm@jplusplus.org
|
9
9
|
License: MIT
|
@@ -173,6 +173,8 @@ These settings are available for all chart types:
|
|
173
173
|
|
174
174
|
**SeasonalChart**
|
175
175
|
|
176
|
+
_ Inherits from SerialChart _
|
177
|
+
|
176
178
|
**BubbleMap**
|
177
179
|
|
178
180
|
- bubble_size = 1 # The size of the bubbles
|
@@ -183,7 +185,7 @@ These settings are available for all chart types:
|
|
183
185
|
- annotation_rotation = 0
|
184
186
|
- stacked = False
|
185
187
|
- legend = True
|
186
|
-
- colors = None
|
188
|
+
- colors = None # A dictionary of colors
|
187
189
|
|
188
190
|
**CategoricalChartWithReference**
|
189
191
|
|
@@ -252,6 +254,15 @@ Roadmap
|
|
252
254
|
Changelog
|
253
255
|
---------
|
254
256
|
|
257
|
+
- 1.63.5
|
258
|
+
|
259
|
+
- Improved edge case handling when using fixed decimal places and remove duplicated ticks
|
260
|
+
- Tighter x-axis ticks in decennial data
|
261
|
+
|
262
|
+
- 1.63.4
|
263
|
+
|
264
|
+
- Fixed edge case in integer check
|
265
|
+
|
255
266
|
- 1.63.3
|
256
267
|
|
257
268
|
- Fixed bug in decimal auto detection
|
@@ -1,7 +1,7 @@
|
|
1
|
-
newsworthycharts/__init__.py,sha256=
|
1
|
+
newsworthycharts/__init__.py,sha256=elEV2GIioxyMzFQUkHwXEsdCH1gR3LwXYvLY4CU7yjs,1160
|
2
2
|
newsworthycharts/bubblemap.py,sha256=nkocWmpiFgfjEuJGAsthjY5X7Q56jXWsZHUGXw4PwgE,2587
|
3
3
|
newsworthycharts/categoricalchart.py,sha256=LwOZ3VbNy9vzvoK0s77AkbfMt4CXVDSAhnsnBInUIrE,14764
|
4
|
-
newsworthycharts/chart.py,sha256
|
4
|
+
newsworthycharts/chart.py,sha256=-GHmdO0Q0YURamo9z4HG1mveTNsxaRSpQZFtGXhUe28,32431
|
5
5
|
newsworthycharts/choroplethmap.py,sha256=bCLf4kcchp1C2djg5AxcOM8BdbaMj0xg7UHrZsDafhI,8013
|
6
6
|
newsworthycharts/datawrapper.py,sha256=RRkAVTpfP4updKxUIBaSmKuBi2RUVPaBRF8HDQhlGGA,11250
|
7
7
|
newsworthycharts/map.py,sha256=c409jEO4L8Yr780sJRC0RchR44roAlgOUDAkuk1SfRg,6057
|
@@ -28,8 +28,8 @@ newsworthycharts/rc/newsworthy,sha256=vbYTav1w3DmB5tpaaV7Xl5q7TQJsc9eou6pLCoWc2v
|
|
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.63.
|
32
|
-
newsworthycharts-1.63.
|
33
|
-
newsworthycharts-1.63.
|
34
|
-
newsworthycharts-1.63.
|
35
|
-
newsworthycharts-1.63.
|
31
|
+
newsworthycharts-1.63.5.dist-info/LICENSE.txt,sha256=Sq6kGICrehbhC_FolNdXf0djKjTpv3YqjFCIYsxdQN4,1069
|
32
|
+
newsworthycharts-1.63.5.dist-info/METADATA,sha256=nKWWpnOJdxul89NpEJAsxcsB44S0PEUCxi1FY83jePo,29775
|
33
|
+
newsworthycharts-1.63.5.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
34
|
+
newsworthycharts-1.63.5.dist-info/top_level.txt,sha256=dn_kzIj8UgUCMsh1PHdVEQJHVGSsN7Z8YJF-8xXa8n0,17
|
35
|
+
newsworthycharts-1.63.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|