Преглед на файлове

Update 'tutorials/modality/accessing-clinical-records.md'

Rename presenting_disorders to psychiatric_diagnostic_profile to include both primary and associated diagnoses.
hrani преди 1 седмица
родител
ревизия
9bb8d41a07
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      tutorials/modality/accessing-clinical-records.md

+ 2 - 2
tutorials/modality/accessing-clinical-records.md

@@ -31,11 +31,11 @@ Next, we connect to the database using credentials:
 db.connect("username", "password")
 ```
 
-Now, let's query a specific table, such as `presenting_disorders`, and
+Now, let's query a specific table, such as `psychiatric_diagnostic_profile`, and
 display some of the data:
 
 ```python
-df = db.query(table="presenting_disorders")
+df = db.query(table="psychiatric_diagnostic_profile")
 df[["subject", "session", "addiction"]].head()
 ```