Spaces:
Runtime error
Runtime error
sergiolucero
commited on
Commit
•
4f54e11
1
Parent(s):
2428837
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def display_text(option):
|
|
15 |
return left, right
|
16 |
|
17 |
df = pd.read_csv('pacientes.csv')
|
18 |
-
pacientes = df['paciente'].unique() # now contains PAC_ID
|
19 |
print('PAX:', pacientes, type(pacientes))
|
20 |
pid_dict = dict(zip(df.paciente, df.pac_id))
|
21 |
################################################
|
|
|
15 |
return left, right
|
16 |
|
17 |
df = pd.read_csv('pacientes.csv')
|
18 |
+
pacientes = list(df['paciente'].unique()) # now contains PAC_ID
|
19 |
print('PAX:', pacientes, type(pacientes))
|
20 |
pid_dict = dict(zip(df.paciente, df.pac_id))
|
21 |
################################################
|