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
Which then adds a boolean column with the given name.
But I'm having trouble deleting this column afterwards
I have tried scatterplot.dataset.delete_column_if_exists(name) which just crashes without error (I couldn't debug it)
Also tried modifying the selection using. selection.addPoints(name,select_ids_bigint) (where selection is a DataSelection type)
but this errors out saying name column already exists.
Is there a better way to do selections using transformation stuff directly?
The text was updated successfully, but these errors were encountered:
From the example codes I see you can add a selection using
select_and_plot
:Which then adds a boolean column with the given
name
.But I'm having trouble deleting this column afterwards
I have tried
scatterplot.dataset.delete_column_if_exists(name)
which just crashes without error (I couldn't debug it)Also tried modifying the selection using.
selection.addPoints(name,select_ids_bigint)
(where selection is a DataSelection type)but this errors out saying
name
column already exists.Is there a better way to do selections using
transformation
stuff directly?The text was updated successfully, but these errors were encountered: