Skip to content

Commit 0a19419

Browse files
committed
remove replace output-numd fences with
as parser doesn't like them
1 parent 07ac7ca commit 0a19419

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

book/dataframes.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ bench -n 10 --pretty {
118118
}
119119
}
120120
```
121-
```output-numd
121+
```
122122
3sec 268ms +/- 50ms
123123
```
124124

@@ -142,7 +142,7 @@ bench -n 10 --pretty {
142142
python load.py | null
143143
}
144144
```
145-
```output-numd
145+
```
146146
1sec 322ms +/- 6ms
147147
```
148148

@@ -169,7 +169,7 @@ bench -n 10 --pretty {
169169
nu load.nu | complete | null
170170
}
171171
```
172-
```output-numd
172+
```
173173
135ms +/- 4ms
174174
```
175175

@@ -436,7 +436,7 @@ $group
436436
(polars col float_2 | polars count)
437437
] | polars sort-by first
438438
```
439-
```output-numd
439+
```
440440
╭────────────────┬─────────────────────────────────────────────────────────────────────────────────────────────────────╮
441441
│ plan │ SORT BY [col("first")] │
442442
│ │ AGGREGATE │
@@ -904,7 +904,7 @@ in column `word`
904904
```nu
905905
$df_1 | polars filter-with ($in.word | polars is-unique)
906906
```
907-
```output-numd
907+
```
908908
╭───┬───────┬───────┬─────────┬─────────┬───────┬────────┬───────┬───────╮
909909
│ # │ int_1 │ int_2 │ float_1 │ float_2 │ first │ second │ third │ word │
910910
├───┼───────┼───────┼─────────┼─────────┼───────┼────────┼───────┼───────┤
@@ -918,7 +918,7 @@ Or all the duplicated ones
918918
```nu
919919
$df_1 | polars filter-with ($in.word | polars is-duplicated)
920920
```
921-
```output-numd
921+
```
922922
╭───┬───────┬───────┬─────────┬─────────┬───────┬────────┬───────┬────────╮
923923
│ # │ int_1 │ int_2 │ float_1 │ float_2 │ first │ second │ third │ word │
924924
├───┼───────┼───────┼─────────┼─────────┼───────┼────────┼───────┼────────┤
@@ -994,7 +994,7 @@ $lf_0
994994
]
995995
| polars collect
996996
```
997-
```output-numd
997+
```
998998
╭───┬───┬───┬──────────┬────────╮
999999
│ # │ a │ b │ double_a │ half_a │
10001000
├───┼───┼───┼──────────┼────────┤
@@ -1065,7 +1065,7 @@ $lf_1
10651065
]
10661066
| polars collect
10671067
```
1068-
```output-numd
1068+
```
10691069
╭───┬──────┬─────┬──────╮
10701070
│ # │ name │ sum │ mean │
10711071
├───┼──────┼─────┼──────┤
@@ -1088,7 +1088,7 @@ let group = $lf_2
10881088
10891089
$lf_2 | polars join $group name name | polars collect
10901090
```
1091-
```output-numd
1091+
```
10921092
╭───┬──────┬───────┬─────┬──────╮
10931093
│ # │ name │ value │ sum │ mean │
10941094
├───┼──────┼───────┼─────┼──────┤
@@ -1182,4 +1182,4 @@ commands and tools that take advantage of these commands will be added as they
11821182
mature.
11831183

11841184
Keep visiting this book in order to check the new things happening to
1185-
dataframes and how they can help you process data faster and efficiently.
1185+
dataframes and how they can help you process data faster and efficiently.

0 commit comments

Comments
 (0)