Spaces:
Sleeping
Sleeping
File size: 661 Bytes
26470f6 a6a9f37 26470f6 b921009 26470f6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import streamlit as st
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
#from phik.report import plot_correlation_matrix
from PIL import Image
#membuat function untuk nantinya dipanggil di app.py
def run():
st.title('Welcome to Explaration Data Analysis')
# #Memanggil data csv
# df= pd.read_csv(r'rideshare_kaggle.csv')
# #menampilakn 5 data teratas
# st.table(df.head(5))
#menampilakn phik matrix
st.title('phik correlation matrix')
image = Image.open('src/charts1.jpg')
st.image(image, caption='figure 1')
#menampilkan penjelasan
with st.expander('Explanation'):
st.caption('lorem ipsum')
|