awacke1 commited on
Commit
705122f
·
verified ·
1 Parent(s): 6e0292b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -0
app.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ st.markdown('''
3
+
4
+ Question: Roughly how many employees are medically licensed Doctors? Nurses? IT? Total Employees
5
+
6
+ | Organization | Doctors🔬 | Nurses🏥 | IT Staff💻 | Total Employees👥 |
7
+ |--------------------------|-----------|----------|------------|--------------------|
8
+ | UnitedHealth Group | 90,000 | 100,000 | Unknown | 350,000 |
9
+ | HCA Healthcare | 50,000 | 150,000 | Unknown | 270,000 |
10
+ | Mayo Clinic | 7,000 | 30,000 | Unknown | 76,000 |
11
+ | Cleveland Clinic | 4,000 | 15,000 | Unknown | 65,000 |
12
+ | Kaiser Permanente | 22,000 | 50,000 | Unknown | 218,000 |
13
+ | Ascension Health | 30,000 | 70,000 | Unknown | 150,000 |
14
+ | CommonSpirit Health | 12,000 | 50,000 | Unknown | 150,000 |
15
+ | Trinity Health | 10,000 | 40,000 | Unknown | 129,000 |
16
+ | AdventHealth | 8,000 | 30,000 | Unknown | 80,000 |
17
+ | Baptist Health | 5,000 | 20,000 | Unknown | 50,000 |
18
+
19
+ - **Doctors🔬**: Estimated based on known or reported numbers and the scale of the organization.
20
+ - **Nurses🏥**: Estimated based on the ratio to doctors and the total healthcare workforce of each organization.
21
+ - **IT Staff💻**: Marked as "Unknown" due to lack of specific public data.
22
+ - **Total Employees👥**: Total number of employees in the organization, including all roles.
23
+
24
+ Please note:
25
+ - These numbers are approximations. The actual figures might vary due to changes in employment or reporting practices.
26
+ - IT staff counts remain "Unknown" due to no specific public data being available.
27
+
28
+ ''')