Good morning everyone,
I’ve been playing around with matplotlib recently and I drafted some Charts. Unfortunately, I’m currently stuck, as I cannot resize the chart (Code and Screenshots below, sorry for the chaos with the dates). I tried using figsize but it just doesn’t change the output image.
Do you guys have an idea, where I’m wrong?
Cheers and have a good evening! Nik
JavaScript
x
11
11
1
with plot.style.context('ggplot'):
2
for row in Data:
3
plot.plot(range(len(row)), row)
4
x_axis = ['01-2019', '02-2019', '03-2019', '04-2019', '05-2019', '06-2019', '07-2019', '08-
5
2019', '09-2019', '10-2019', '11-2019', '12-2019', '01-2020', '02-2020', '03-2020', '04-2020',
6
'05-2020', '06-2020', '07-2020', '08-2020', '09-2020', '10-2020', '11-2020', '12-2020', '01-
7
2021', '02-2021', '03-2021', '04-2021', '05-2021', '06-2021']
8
plot.xticks(nump.arange(30), x_axis, rotation = '50')
9
figure(figsize = (20, 6), dpi = 80)
10
plot.savefig('globalTrafficDuringRoni.png', dpi = 1000)
11
Advertisement
Answer
with below code, I save the plot with figsize that set before. in your code first set figsize then plot. in your code try this:
JavaScript
1
8
1
figure(figsize = (20, 6), dpi = 80)
2
with plot.style.context('ggplot'):
3
for row in Data:
4
plot.plot(range(len(row)), row)
5
x_axis = ['01-2019', '02-2019', '03-2019', '04-2019', '05-2019', '06-2019', '07-2019', '08- 2019', '09-2019', '10-2019', '11-2019', '12-2019', '01-2020', '02-2020', '03-2020', '04-2020', '05-2020', '06-2020', '07-2020', '08-2020', '09-2020', '10-2020', '11-2020', '12-2020', '01- 2021', '02-2021', '03-2021', '04-2021', '05-2021', '06-2021']
6
plot.xticks(nump.arange(30), x_axis, rotation = '50')
7
plot.savefig('globalTrafficDuringRoni.png', dpi = 1000)
8
see this example:
JavaScript
1
13
13
1
import matplotlib.pyplot as plt
2
from matplotlib.pyplot import figure
3
4
D = {'a':0.1, 'b': 0.2, 'c':0.5, 'd':0.3, 'e':0.4, 'f':0.6, 'g':0.4}
5
6
figure(figsize = (10, 6), dpi = 80)
7
8
plt.bar(range(len(D)), list(D.values()), align='center')
9
plt.xticks(range(len(D)), list(D.keys()))
10
plt.savefig('globalTrafficDuringRoni.png', dpi = 1000)
11
12
plt.show()
13
output: