|
|
|
import pandas as pd |
|
import numpy as np |
|
import streamlit as st |
|
|
|
|
|
import matplotlib.pyplot as plt |
|
import seaborn as sns |
|
import plotly.express as px |
|
|
|
|
|
def run(): |
|
|
|
st.title('Exploratory Data Analysis (EDA)') |
|
st.write('---') |
|
|
|
|
|
st.write('### Distribusi label') |
|
|
|
st.image('distribusiLabel.png') |
|
st.write('---') |
|
|
|
|
|
st.write('### Gambar Sign Language Gesture') |
|
|
|
st.image('gambarLabel.png') |
|
st.write('---') |
|
|
|
|
|
st.markdown( |
|
""" |
|
<style> |
|
.right-align { |
|
text-align: right; |
|
} |
|
</style> |
|
""", |
|
unsafe_allow_html=True |
|
) |
|
st.markdown( |
|
"<p class='right-align'>Created by Muhammad Hafidz Adityaswara</p>", |
|
unsafe_allow_html=True |
|
) |
|
|
|
|
|
|
|
if __name__ == "__main__": |
|
run() |
|
|