Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # libraries
- import numpy as np
- import matplotlib.pyplot as plt
- # informasi plot
- plt.title("Diagram garis jumlah siswa per tahun")
- plt.xlabel("Tahun")
- plt.ylabel("Jumlah Siswa")
- # lebar bar
- barWidth = 0.4
- # data jumlah siswa pria
- jumlah_siswa_laki = [75, 90, 60,84, 88, 92]
- # data jumlah siswa perempuan
- jumlah_siswa_perempuan = [80, 95, 67,75,93, 102]
- # posisi mendatar (x) dari diagram batang
- r1 = np.arange(len(jumlah_siswa_laki))
- r2 = [x + barWidth for x in r1]
- # diagram batang untuk siswa laki-laki
- plt.bar(r1,jumlah_siswa_laki, width = barWidth,
- color = 'green',
- edgecolor = 'black',
- label='laki-laki')
- # diagram batang untuk siswa perempuan
- plt.bar(r2, jumlah_siswa_perempuan, width = barWidth,
- color = 'yellow',
- edgecolor = 'black',
- label='perempuan')
- plt.xticks([r + barWidth
- for r in range(len(jumlah_siswa_laki))],
- ['2014', '2015', '2016', '2017','2018','2019'])
- # tampilkan plot dn legenda
- plt.legend()
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement