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
Feature store allows you to define expectations on data being materialized into feature group instance. With a ``FeatureGroup`` instance, we can save the expectation entity using ``save_expectation()``
130
-
131
-
132
-
.. image:: figures/validation.png
126
+
Feature store allows you to define expectations on data being materialized into dataset instance.With a ``Dataset`` instance, You can save the expectation details using ``with_expectation_suite()`` with parameters
133
127
134
-
The ``.save_expectation()`` method takes the following optional parameter:
135
-
136
-
- ``expectation: Expectation``. Expectation of great expectation
128
+
- ``expectation_suite: ExpectationSuite``. ExpectationSuit of great expectation
137
129
- ``expectation_type: ExpectationType``. Type of expectation
138
130
- ``ExpectationType.STRICT``: Fail the job if expectation not met
139
131
- ``ExpectationType.LENIENT``: Pass the job even if expectation not met
140
132
133
+
.. note::
134
+
135
+
Great Expectations is a Python-based open-source library for validating, documenting, and profiling your data. It helps you to maintain data quality and improve communication about data between teams. Software developers have long known that automated testing is essential for managing complex codebases.
Copy file name to clipboardExpand all lines: ads/feature_store/docs/source/feature_group.rst
+41-8Lines changed: 41 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -152,22 +152,55 @@ Feature store provides an API similar to Pandas to join feature groups together
152
152
153
153
Save expectation entity
154
154
=======================
155
-
Feature store allows you to define expectations on data being materialized into feature group instance. With a ``FeatureGroup`` instance, we can save the expectation entity using ``save_expectation()``
155
+
With a ``FeatureGroup`` instance, You can save the expectation details using ``with_expectation_suite()`` with parameters
156
156
157
-
158
-
.. image:: figures/validation.png
159
-
160
-
The ``.save_expectation()`` method takes the following optional parameter:
161
-
162
-
- ``expectation: Expectation``. Expectation of great expectation
157
+
- ``expectation_suite: ExpectationSuite``. ExpectationSuit of great expectation
163
158
- ``expectation_type: ExpectationType``. Type of expectation
164
159
- ``ExpectationType.STRICT``: Fail the job if expectation not met
165
160
- ``ExpectationType.LENIENT``: Pass the job even if expectation not met
166
161
162
+
.. note::
163
+
164
+
Great Expectations is a Python-based open-source library for validating, documenting, and profiling your data. It helps you to maintain data quality and improve communication about data between teams. Software developers have long known that automated testing is essential for managing complex codebases.
0 commit comments