Browse Source

Update 'tutorials/multimodal/average-eeg-across-disorders.md'

Table name has changed
hrani 3 weeks ago
parent
commit
41fc2c6662
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorials/multimodal/average-eeg-across-disorders.md

+ 1 - 1
tutorials/multimodal/average-eeg-across-disorders.md

@@ -47,7 +47,7 @@ We connect to the database and query the presenting disorders table.
 ```python
 db = ds.components[2]
 db.connect("username", "password")
-df = ds.query(table="presenting_disorders")
+df = ds.query(table="psychiatric_diagnostic_profile")
 df[["subject", "session", "addiction"]].head()
 ```