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
Copy file name to clipboardExpand all lines: docs/guides/quickstart.ipynb
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
"source": [
30
30
"## Basic Comparison\n",
31
31
"\n",
32
-
"To get started with diffly, you'll use the {func}`~diffly.compare_frames` function to compare two Polars DataFrames:"
32
+
"To get started with `diffly`, you'll use the {func}`~diffly.compare_frames` function to compare two Polars DataFrames:"
33
33
]
34
34
},
35
35
{
@@ -289,12 +289,12 @@
289
289
"source": [
290
290
"## Configuring Tolerances\n",
291
291
"\n",
292
-
"When comparing floating point numbers or temporal data, exact equality may not be appropriate. diffly supports tolerance-based comparisons:"
292
+
"When comparing floating point numbers or temporal data, exact equality may not be appropriate. `diffly` supports tolerance-based comparisons:"
293
293
]
294
294
},
295
295
{
296
296
"cell_type": "code",
297
-
"execution_count": 5,
297
+
"execution_count": null,
298
298
"metadata": {},
299
299
"outputs": [
300
300
{
@@ -390,6 +390,8 @@
390
390
}
391
391
],
392
392
"source": [
393
+
"# REVIEW: In this example, do we have to supply the default value as 1e-08/1e-05? I thought there was a way to only pass a Mapping without needing to specify a default value.\n",
394
+
"\n",
393
395
"from collections import defaultdict\n",
394
396
"\n",
395
397
"comparison_per_column = compare_frames(\n",
@@ -460,7 +462,7 @@
460
462
"source": [
461
463
"## Comparing LazyFrames\n",
462
464
"\n",
463
-
"diffly works seamlessly with both {class}`polars.DataFrame` and {class}`polars.LazyFrame`:"
465
+
"`diffly` works seamlessly with both {class}`polars.DataFrame` and {class}`polars.LazyFrame`:"
464
466
]
465
467
},
466
468
{
@@ -574,7 +576,7 @@
574
576
"source": [
575
577
"## Using diffly in Tests\n",
576
578
"\n",
577
-
"diffly provides assertion functions for use in test suites:"
579
+
"`diffly` provides assertion functions for use in test suites:"
0 commit comments