Metrics Provider for Customer Expectations

MetricsProviders have been removed in GX 1.x.x. We recommend taking a look at our latest documentation on how to create Custom Expectations, including Custom SQL Expectations.

Hi Nevin, Thanks for the reply. The closest Expectation class that I can find the ExpectMulticolumnSumToEqual. However, the class is checking the sum of the columns to a fixed total. I want the sum of the columns to compare another column dynamically for every row. Is there anyway i can do it? df[col_a] + df[col_b] == df[col_c] rather than df[col_a] + df[col_b] == constant

It looks like the best solution for you here would be to use a Custom SQL Expectation.

Hi Nevin, is it possible to use a Custom SQL Expectation on a pandas dataframe?