[text] J

Viewer

  1. import streamlit as st
  2. import pandas as pd
  3.  
  4. # Sample data
  5. data = {
  6.     "Harmonization Type": ["Competitor Harmonization", "Product Harmonization", "Market/Format Harmonization", "Cognitive and Integrated Insights platform powered by AI/ML", "Time Period Harmonization"],
  7.     "Description": ["0000", "", "000", "", ""]
  8. }
  9.  
  10. # Create DataFrame
  11. df = pd.DataFrame(data)
  12.  
  13. # Page title
  14. st.title("TOS Data Harmonization Platform")
  15.  
  16. # Display DataFrame
  17. st.write("## Harmonization Types")
  18. st.write(df)
  19.  
  20. # Add more components as needed

Editor

You can edit this paste and save as new:


File Description
  • J
  • Paste Code
  • 24 Apr-2024
  • 542 Bytes
You can Share it: