Borya-Goldarb commited on
Commit
196ea3f
·
verified ·
1 Parent(s): 782197f

Update pages/comps_data.py

Browse files
Files changed (1) hide show
  1. pages/comps_data.py +3 -5
pages/comps_data.py CHANGED
@@ -115,10 +115,8 @@ def main():
115
  col_3_1, col_3_2, col_3_3 = st.columns([5,1,5])
116
  with col_3_1:
117
  data5 = {
118
- "favorite": [False, False, False, True, True, False, False, True],
119
- 'Address': ['B', 'B', 'B', 'B', 'B',
120
- 'B', 'B', 'B'
121
- ],
122
  'latitude': [40.7]*8, # Assuming latitude range between 40.7 and 40.8
123
  'longitude': [-74.0]*8, # Assuming longitude range between -74.0 and -73.9
124
  'Match score': [12, 12, 12, 12, 12, 12, 12, 12],
@@ -154,10 +152,10 @@ def main():
154
  'RSF','Rent (NNN)','Year Built','Office %','Clear Height','Doors (drive in / Dock)','Lease Term ','Rent (Gross)','TIs '],
155
  hide_index=True,
156
  )
157
- st.write(test)
158
  with col_3_2:
159
  if st.button("Add comps", help="Click to add more comps"):
160
  filtered_data = pd.concat([filtered_data, test])
 
161
  with col_3_3:
162
  st.write('Filter definition')
163
 
 
115
  col_3_1, col_3_2, col_3_3 = st.columns([5,1,5])
116
  with col_3_1:
117
  data5 = {
118
+ "favorite": [False]*8,
119
+ 'Address': ['B', 'B', 'B', 'B', 'B', 'B', 'B', 'B'],
 
 
120
  'latitude': [40.7]*8, # Assuming latitude range between 40.7 and 40.8
121
  'longitude': [-74.0]*8, # Assuming longitude range between -74.0 and -73.9
122
  'Match score': [12, 12, 12, 12, 12, 12, 12, 12],
 
152
  'RSF','Rent (NNN)','Year Built','Office %','Clear Height','Doors (drive in / Dock)','Lease Term ','Rent (Gross)','TIs '],
153
  hide_index=True,
154
  )
 
155
  with col_3_2:
156
  if st.button("Add comps", help="Click to add more comps"):
157
  filtered_data = pd.concat([filtered_data, test])
158
+ st.write(test)
159
  with col_3_3:
160
  st.write('Filter definition')
161