Skip to content

Commit f53b7f9

Browse files
author
Symbolics
committed
Update data frame getting started tutorial
1 parent dbfd1e1 commit f53b7f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/Tutorials/data-frame.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ You could, for example, use something like this to find the minimum:
200200
(reduce #'min mtcars:mpg) ;; => 10.4d0
201201
```
202202

203-
or the Lisp-Stat function `sequence-maximum` to find the maximum
203+
or the Lisp-Stat function `seq-max` to find the maximum
204204

205205
```lisp
206-
(sequence-maximum mtcars:mpg) ;; => 33.9d0
206+
(seq-max mtcars:mpg) ;; => 33.9d0
207207
```
208208

209209
or perhaps you'd prefer
@@ -224,7 +224,7 @@ Lisp vector and you can manipulate it like one.
224224
```
225225

226226
```lisp
227-
(standard-deviation mtcars:mpg) ;; => 5.932029552301219d0
227+
(sd mtcars:mpg) ;; => 5.932029552301219d0
228228
```
229229

230230
### Summarise

0 commit comments

Comments
 (0)