Hi all,
In both the API and the tables GUI, the labels for group by are off. For example:
```
table = syn.tableQuery('SELECT Count(Dx) FROM syn8227829 GROUP BY Institution')
table.asDataFrame()
```
When you examine the output from these commands, you can see that the "Institution" label is missing:
0 393
1 859
2 107
3 194
Can this be fixed? Thanks!
Created by Laura Sloofman lauragails Found the fix: When you include the columns in the SELECT statement that you're grouping on, the labels show up.