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
Currently the check performed on numeric values checks if the obtained column dtype is of subtype np.inexact.
This excludes tolerances for Integer values. Is there any specific reason to exclude Integers?
E.g. the type of a column is Int64 and the unit (not shown of course) is nanoseconds, the tolerance check is excluded.
Currently the check performed on numeric values checks if the obtained column dtype is of subtype np.inexact.
This excludes tolerances for Integer values. Is there any specific reason to exclude Integers?
E.g. the type of a column is Int64 and the unit (not shown of course) is nanoseconds, the tolerance check is excluded.
Rather than dataframe_regression#L127
np.issubdtype(obtained_column.values.dtype, np.number)
The text was updated successfully, but these errors were encountered: