We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86173a6 + 1c185c8 commit fae1ed0Copy full SHA for fae1ed0
src/data_visualization/tableplot_parameter_flow.clj
@@ -64,6 +64,17 @@
64
;;
65
;; Let's start with a basic dataset and plot.
66
67
+;; We will use:
68
+;; [Kindly](https://scicloj.github.io/kindly-noted/) for annotating visualizations,
69
+;; [Tablecloth](https://scicloj.github.io/tablecloth/) for table processing, and
70
+;; [Tableplot for plotting](https://scicloj.github.io/tableplot/).
71
+
72
73
+(require
74
+ '[scicloj.kindly.v4.kind :as kind]
75
+ '[tablecloth.api :as tc]
76
+ '[scicloj.tableplot.v1.plotly :as plotly])
77
78
(def sample-data
79
(tc/dataset {:x [1 2 3 4 5]
80
:y [2 4 3 5 7]}))
0 commit comments