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
Describe the bug
We can only check one index type at a time. I would like to be able to check both datetime.datetime and int indexed dataframes.
I have checked that this issue has not already been reported.
Code Sample, a copy-pastable example
validation_schema: InstanceOf[pa.DataFrameSchema] = (
pa.DataFrameSchema(
{
".*": pa.Column(
float,
regex=True,
nullable=False,
),
},
index=pa.Index(datetime), # We would like to support both datetime and intunique_column_names=True,
)
)
Expected behavior
Validation schema that supports both int and datetime.datetime types.
Desktop (please complete the following information):
OS: Linux Ubuntu 20.04
Browser: Chrome
Version: pandera==0.20.4
The text was updated successfully, but these errors were encountered:
Describe the bug
We can only check one index type at a time. I would like to be able to check both datetime.datetime and int indexed dataframes.
Code Sample, a copy-pastable example
Expected behavior
Validation schema that supports both int and datetime.datetime types.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: