If I define df_asset
as follows
import great_expectations as ge
df_asset = ge.from_pandas(pd.DataFrame({'A': [1.1, 2.2, 3.3], 'B': [4.4, 5.5, 6.6]}))
then the expect_table_columns_to_match_ordered_list method works (output on 2nd line):
df_asset.expect_table_columns_to_match_ordered_list(['A', 'B'])
{'success': True, 'result': {'observed_value': ['A', 'B']}}
However the following does not:
df_asset.expect_table_columns_to_match_set(set(['A', 'B']))
AttributeError: 'PandasDataset' object has no attribute 'expect_table_columns_to_match_set'
The Great Expectations version is 0.7.6. What is going wrong here?