import streamlit as st import pandas as pd import numpy as np custom_css = """ """ # Inject the CSS into the app st.markdown(custom_css, unsafe_allow_html=True) st.markdown("
" "Raw facts, figures, or other information gathered for analysis, reference, or use in decision-making processes are called as data. It serves as the foundation for several processes in a variety of domains, such as machine learning, which uses to provide insights and train models." "
", unsafe_allow_html=True ) st.markdown("Data can come in various forms, including text, numbers, images, videos, or signals, and is usually categorized into three main types:") st.markdown("1. Structured data") st.markdown("2. Unstructured data") st.markdown("3. Semi-Structured data") st.markdown("" "Organized in a predefined format, typically in rows and columns (e.g., spreadsheets, relational databases)." "
", unsafe_allow_html=True ) st.markdown("" "Does not follow a predefined structure, such as text documents, images, and videos." "
", unsafe_allow_html=True ) st.markdown("" "Has elements of both structured and unstructured data, like JSON or XML files." "
", unsafe_allow_html=True ) # Buttons for each stage st.markdown("### Types of Data:") col1, col2,col3 = st.columns(3) with col1: if st.button("EXCEL"): st.switch_page("pages/excel_Files.py") if st.button("CSV"): st.switch_page("pages/info_of_CSV.py") with col2: if st.button("XML"): st.switch_page("pages/Info_of_XML.py") if st.button("JSON"): st.switch_page("pages/Info_of_Json.py") if st.button("HTML"): st.switch_page("pages/Info_of_HTML.py") with col3: if st.button("IMAGE"): st.switch_page("pages/Info _of_Image.py") if st.button("Video"): st.switch_page("pages/Info_of_Video.py")