Spaces:
Sleeping
Sleeping
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() |