Skip to content

Commit ba0c6ba

Browse files
committed
hana - added a couple of examples
1 parent 28efc0b commit ba0c6ba

File tree

1 file changed

+12
-0
lines changed
  • london_clojurians_april_2024/src/notebooks

1 file changed

+12
-0
lines changed

london_clojurians_april_2024/src/notebooks/hana.clj

+12
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,25 @@
164164
{:X :sepal_width
165165
:Y :sepal_length})))
166166

167+
(delay
168+
(-> (toydata/iris-ds)
169+
(plot {:X :sepal_width
170+
:Y :sepal_length})
171+
layer-point))
172+
167173
(delay
168174
(-> (toydata/iris-ds)
169175
(plot {:X :sepal_width
170176
:Y :sepal_length})
171177
layer-point
172178
layer-smooth))
173179

180+
(delay
181+
(-> (toydata/iris-ds)
182+
(plot {:X :sepal_width
183+
:Y :sepal_length})
184+
layer-point))
185+
174186
(delay
175187
(-> (toydata/iris-ds)
176188
(plot {:X :sepal_width

0 commit comments

Comments
 (0)