WAQASCHANNA commited on
Commit
7020301
·
verified ·
1 Parent(s): 3b1e4d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,6 +1,5 @@
1
  import streamlit as st
2
  import pandas as pd
3
- import matplotlib.pyplot as plt
4
 
5
  # Title of the app
6
  st.title("AI-Powered Solutions for the Telecommunication Industry in Underserved Areas")
@@ -28,6 +27,11 @@ if options == "Network Optimization":
28
  "Coverage Radius (km)": [5, 7, 6, 8]
29
  }
30
  df = pd.DataFrame(data)
 
 
 
 
 
31
  st.map(df)
32
 
33
  # Predictive Maintenance
 
1
  import streamlit as st
2
  import pandas as pd
 
3
 
4
  # Title of the app
5
  st.title("AI-Powered Solutions for the Telecommunication Industry in Underserved Areas")
 
27
  "Coverage Radius (km)": [5, 7, 6, 8]
28
  }
29
  df = pd.DataFrame(data)
30
+
31
+ # Rename columns to match Streamlit's expected format
32
+ df = df.rename(columns={"Latitude": "lat", "Longitude": "lon"})
33
+
34
+ # Display the map
35
  st.map(df)
36
 
37
  # Predictive Maintenance