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
DynamicTable objects in NWB can contain ragged columns where each row has a different number of elements. This is represented as a VectorData object with an associated VectorIndex object in the same table that points to it (this index column almost always has the same name as the vectordata object plus a "_index" suffix. https://nwb-schema.readthedocs.io/en/stable/format_description.html#tables-and-ragged-arrays
The table view in Neurosift shows non-ragged column values, but not ragged column values or the column itself.
For example, this is a TimeIntervals table at path /intervals/test that has a custom ragged column that is not shown:
This is a Units table which has a "spike_times" column in the schema that is not shown:
It would be nice to show some of the values of each column, e.g., if the value is a 1D array: [value1, value2, ..., valueN]
The text was updated successfully, but these errors were encountered:
DynamicTable
objects in NWB can contain ragged columns where each row has a different number of elements. This is represented as aVectorData
object with an associatedVectorIndex
object in the same table that points to it (this index column almost always has the same name as the vectordata object plus a "_index" suffix. https://nwb-schema.readthedocs.io/en/stable/format_description.html#tables-and-ragged-arraysThe table view in Neurosift shows non-ragged column values, but not ragged column values or the column itself.
For example, this is a
TimeIntervals
table at path/intervals/test
that has a custom ragged column that is not shown:This is a
Units
table which has a "spike_times" column in the schema that is not shown:It would be nice to show some of the values of each column, e.g., if the value is a 1D array: [value1, value2, ..., valueN]
The text was updated successfully, but these errors were encountered: