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
Of course don't forget to create an isolated environment before using `pip` to install the package:
26
+
Of course don't forget to create an isolated environment before using `pip` to install the package:
30
27
31
-
```shell
32
-
❯ python -m venv venv && . venv/bin/activate
33
-
```
34
-
````
28
+
```shell
29
+
❯ python -m venv venv && . venv/bin/activate
30
+
```
35
31
36
32
Say that the Data Engineers prepared the DaC `dac-example-energy` for you. Install it with
37
33
@@ -159,9 +155,8 @@ In this case [`pandera`](https://pandera.readthedocs.io/en/stable/index.html) ha
159
155
160
156
!!! hint "Example data does not look right"
161
157
162
-
```
163
-
The example data above does not look right. Does this mean that there is something wrong in the implementation of the `example` method? Not really! Read [here](#nice-to-have-schemaexample-method).
164
-
```
158
+
The example data above does not look right. Does this mean that there is something wrong in the implementation of the
159
+
`example` method? Not really! Read [here](#nice-to-have-schemaexample-method).
165
160
166
161
## Producer - Data Engineer
167
162
@@ -172,9 +167,9 @@ but are not strictly necessary.
172
167
173
168
!!! hint "Use [`pandera`](https://pandera.readthedocs.io/en/stable/index.html) to define the Schema"
174
169
175
-
```
176
-
If the dataframe engine (pandas/polars/dask/spark...) you are using is supported by [`pandera`](https://pandera.readthedocs.io/en/stable/index.html), consider using a [`DataFrameModel`](https://pandera.readthedocs.io/en/stable/dataframe_models.html) to define the Schema.
177
-
```
170
+
If the dataframe engine (pandas/polars/dask/spark...) you are using is supported by
171
+
[`pandera`](https://pandera.readthedocs.io/en/stable/index.html), consider using a
172
+
[`DataFrameModel`](https://pandera.readthedocs.io/en/stable/dataframe_models.html) to define the Schema.
0 commit comments