Skip to content

Commit 99387ec

Browse files
minor grammar fixes
1 parent 965f8a9 commit 99387ec

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

src/scicloj/tableplot/ideas/macroexpand_workshop_tableplot.clj

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
^{:clay {:title "Macroexpand 2025 Noj: Civitas Workshop"
22
:quarto {:author :timothypratley
3-
:description "What is Civitas, why use it, and how to use it."
43
:image "macroexpand_workshop_tableplot.png"
54
:type :post
65
:date "2025-10-17"
@@ -10,9 +9,8 @@
109
(:require [tablecloth.api :as tc]
1110
[scicloj.tableplot.v1.plotly :as tp]))
1211

13-
;; We built this code in the Civitas Workshop,
14-
;; we selected Tableplot as the topic to write about.
15-
12+
;; We built this code in the Civitas Workshop.
13+
;; We selected Tableplot as the topic to write about.
1614

1715
;; Everything about Tableplot is inspired by R,
1816
;; there everything is about tables - dataframes.
@@ -25,16 +23,15 @@
2523
:y [10 20 15 25 18]
2624
:z [1 2 1 2 1]}))
2725

28-
;; Why is the plot not Kindly annotated?
29-
;; Tableplot returns annotated values
26+
;; We call tableplot on the dataset:
3027

3128
(-> scatter-ds
3229
(tp/base {:=title "Sample Scatter Plot"})
3330
(tp/layer-point {:=x :x
3431
:=y :y}))
3532

3633
;; Why is the plot not Kindly annotated?
37-
;; Tableplot returns annotated values
34+
;; Tableplot returns annotated values.
3835

3936
(-> scatter-ds
4037
(tp/base {:=title "Sample Scatter Plot"})
@@ -55,7 +52,7 @@
5552

5653
;; Other types of plots:
5754

58-
;; using layer-bar instead of layer-point
55+
;; Using layer-bar instead of layer-point
5956

6057
(-> scatter-ds
6158
(tp/base {:=title "Sample Scatter Plot"})

0 commit comments

Comments
 (0)