Skip to content

Commit cf38f0b

Browse files
authored
Merge pull request #247 from ClojureCivitas/aog-1
unprivate some variables
2 parents f37ca60 + 935dd82 commit cf38f0b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/data_visualization/aog_in_clojure_part1.clj

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1209,23 +1209,23 @@ iris
12091209
;; # Constants
12101210

12111211
;; ggplot2-compatible color palette for categorical variables
1212-
(def ^:private ggplot2-colors
1212+
(def ggplot2-colors
12131213
["#F8766D" "#00BA38" "#619CFF" "#F564E3"])
12141214

12151215
;; ggplot2 theme colors
1216-
(def ^:private ggplot2-background "#EBEBEB")
1217-
(def ^:private ggplot2-grid "#FFFFFF")
1218-
(def ^:private ggplot2-default-mark "#333333")
1216+
(def ggplot2-background "#EBEBEB")
1217+
(def ggplot2-grid "#FFFFFF")
1218+
(def ggplot2-default-mark "#333333")
12191219

12201220
;; Layout constants (extracted magic numbers for maintainability)
1221-
(def ^:private default-plot-width 600)
1222-
(def ^:private default-plot-height 400)
1223-
(def ^:private panel-margin-left 50)
1224-
(def ^:private panel-margin-right 50)
1225-
(def ^:private panel-margin-top 50)
1226-
(def ^:private panel-margin-bottom 50)
1227-
(def ^:private facet-label-offset 30)
1228-
(def ^:private facet-label-side-offset 20)
1221+
(def default-plot-width 600)
1222+
(def default-plot-height 400)
1223+
(def panel-margin-left 50)
1224+
(def panel-margin-right 50)
1225+
(def panel-margin-top 50)
1226+
(def panel-margin-bottom 50)
1227+
(def facet-label-offset 30)
1228+
(def facet-label-side-offset 20)
12291229

12301230
;; ### 🧪 Type Information Example
12311231
;;

0 commit comments

Comments
 (0)