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
The current .table property on event models has the behavior of silently dropping columns that have missing values. This happens with the NULL values in the database get turned into None, which makes the column get initialized as Object dtype, and subsequently dropped. This happens with manvrs for instance.
A new method as_table() could address this by controlling whether the output is a masked table, or warnings are issued, or turning date strings into cxotime mixin columns, etc.
The text was updated successfully, but these errors were encountered:
The current
.table
property on event models has the behavior of silently dropping columns that have missing values. This happens with the NULL values in the database get turned intoNone
, which makes the column get initialized asObject
dtype, and subsequently dropped. This happens withmanvrs
for instance.kadi/kadi/events/models.py
Line 298 in cccaa77
A new method
as_table()
could address this by controlling whether the output is a masked table, or warnings are issued, or turning date strings intocxotime
mixin columns, etc.The text was updated successfully, but these errors were encountered: