Skip to content

Commit

Permalink
Merge pull request #28 from PeaceAntoHim/staging
Browse files Browse the repository at this point in the history
update new html and css config code
  • Loading branch information
PeaceAntoHim authored Sep 15, 2024
2 parents b2c466e + e288859 commit bb4b08a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: './'
path: './public/assets/SEM6/WEB/tp1-profile'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
13 changes: 13 additions & 0 deletions public/assets/SEM6/DS/TP1/visual-data-penduduk.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import matplotlib.pyplot as plt

# Data Negara dan Jumlah Penduduk (dalam juta)
negara = ['Indonesia', 'Brunei Darussalam', 'Malaysia', 'Thailand', 'Vietnam']
jumlah_penduduk = [267, 5.63, 327, 126, 69.4]

# Membuat visualisasi line chart
plt.plot(negara, jumlah_penduduk, marker='o')
plt.title('Jumlah Penduduk di Beberapa Negara ASEAN')
plt.xlabel('Negara')
plt.ylabel('Jumlah Penduduk (dalam juta)')
plt.grid(True)
plt.show()

0 comments on commit bb4b08a

Please sign in to comment.