You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
When new coordinates are added to an assembly, they are not automatically added to the index.
For instance: assembly['region'] = 'neuroid', ['IT'] * len(assembly['neuroid']) will not allow assembly.sel(region='IT') but rather fail with a non-indexed error.
To fix (borrowing from @fksato): assembly.set_index(neuroid='region', append=True).
The text was updated successfully, but these errors were encountered:
When new coordinates are added to an assembly, they are not automatically added to the index.
For instance:
assembly['region'] = 'neuroid', ['IT'] * len(assembly['neuroid'])
will not allowassembly.sel(region='IT')
but rather fail with a non-indexed error.To fix (borrowing from @fksato):
assembly.set_index(neuroid='region', append=True)
.The text was updated successfully, but these errors were encountered: