File size: 1,222 Bytes
4a832b8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
32
33
34
35
36
37
38
39
40
41
42
import streamlit as st

def main():
    st.set_page_config(page_title="Heart Disease")

    # Page title and subtitle with styling
    st.title("Heart Disease")
    st.markdown("*Donated on 6/30/1988*")

    # Load and display an image
    st.image("heart_image.jpg")

    # Dataset information
    st.header("Dataset Information")
    st.write("This dataset contains information from 4 databases: Cleveland, Hungary, Switzerland, and the VA Long Beach")

    # Dataset characteristics
    st.header("Dataset Characteristics")
    st.write("This dataset is multivariate")

    # Subject area
    st.header("Subject Area")
    st.write("This dataset falls under the category of Health and Medicine")

    # Associated tasks
    st.header("Associated Tasks")
    st.write("This dataset is commonly used for Classification tasks")

    # Feature types
    st.header("Feature Type")
    st.write("This dataset contains a mix of Categorical, Integer, and Real features")

    # Instances and Features
    st.write("**Number of Instances:** 303")
    st.write("**Number of Features:** 13")

    # Add a footer
    st.markdown("---")
    st.write("Made with ❤️ by Viga, Hanum, & Robit")

if __name__ == "__main__":
    main()