瀏覽代碼

Update 'tutorials/intro/exploring-with-almirah.md'

Rename presenting_disorders to psychiatric_diagnostic_profile to include both primary and associated diagnoses.
hrani 1 周之前
父節點
當前提交
a8d293f9fa
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      tutorials/intro/exploring-with-almirah.md

+ 2 - 2
tutorials/intro/exploring-with-almirah.md

@@ -155,11 +155,11 @@ 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()
 ```