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
When a column in a returned dataframe has no values in it (e.g. if dynamic schema is enabled but this column was not present in the the date range requested) we return a column with dtypefloat64 full of NaNs in Pandas 1.X, and with dtypeobject filled with Nones in Pandas 2.X, matching Pandas behaviour for empty columns in both cases.
In the special case where there are no rows at all, we should maintain the dtype of the column as it is for that symbol-version pair in storage.
The text was updated successfully, but these errors were encountered:
When a column in a returned dataframe has no values in it (e.g. if dynamic schema is enabled but this column was not present in the the date range requested) we return a column with
dtype
float64
full ofNaN
s in Pandas 1.X, and withdtype
object
filled withNone
s in Pandas 2.X, matching Pandas behaviour for empty columns in both cases.In the special case where there are no rows at all, we should maintain the
dtype
of the column as it is for that symbol-version pair in storage.The text was updated successfully, but these errors were encountered: