We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4da8298 commit 9cc8c2dCopy full SHA for 9cc8c2d
1 file changed
src/spikeinterface/widgets/utils_sortingview.py
@@ -137,9 +137,9 @@ def generate_unit_table_view(
137
if prop_name in sorting_props:
138
property_values = sorting.get_property(prop_name)
139
elif prop_name in qm_props:
140
- property_values = qm_data[prop_name].values
+ property_values = qm_data[prop_name].to_numpy()
141
elif prop_name in tm_props:
142
- property_values = tm_data[prop_name].values
+ property_values = tm_data[prop_name].to_numpy()
143
144
# Check for NaN values and round floats
145
val0 = np.array(property_values[0])
0 commit comments