Skip to content

Commit

Permalink
Update data frame getting started tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Symbolics committed Mar 7, 2024
1 parent dbfd1e1 commit f53b7f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/docs/Tutorials/data-frame.md
Expand Up @@ -200,10 +200,10 @@ You could, for example, use something like this to find the minimum:
(reduce #'min mtcars:mpg) ;; => 10.4d0
```

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

```lisp
(sequence-maximum mtcars:mpg) ;; => 33.9d0
(seq-max mtcars:mpg) ;; => 33.9d0
```

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

```lisp
(standard-deviation mtcars:mpg) ;; => 5.932029552301219d0
(sd mtcars:mpg) ;; => 5.932029552301219d0
```

### Summarise
Expand Down

0 comments on commit f53b7f9

Please sign in to comment.