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
Running analysis with lovecat or cgpm fails on a table with any all-NaN columns. It would be nice to be able to quickly drop such columns automatically.
A helper function to do this would be great in part because of the limitation of SQLite to not allow columns to be dropped directly:
SQLite supports a limited subset of ALTER TABLE. The ALTER TABLE command in SQLite allows the user to rename a table or to add a new column to an existing table. It is not possible to rename a column, remove a column, or add or remove constraints from a table.
The text was updated successfully, but these errors were encountered:
Running analysis with lovecat or cgpm fails on a table with any all-NaN columns. It would be nice to be able to quickly drop such columns automatically.
A helper function to do this would be great in part because of the limitation of SQLite to not allow columns to be dropped directly:
The text was updated successfully, but these errors were encountered: