jupyter-ijavascript-utils 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DOCS.md +6 -0
- package/README.md +20 -6
- package/package.json +1 -1
package/DOCS.md
CHANGED
|
@@ -192,6 +192,12 @@ and more from {@link module:vega}
|
|
|
192
192
|
|
|
193
193
|

|
|
194
194
|
|
|
195
|
+
## Generate Text Driven Diagrams
|
|
196
|
+
|
|
197
|
+
({@link module:plantuml|See the PlantUML module for more})
|
|
198
|
+
|
|
199
|
+

|
|
200
|
+
|
|
195
201
|
## Render Other Libraries
|
|
196
202
|
|
|
197
203
|
(See the {@tutorial htmlScript} tutorial for more)
|
package/README.md
CHANGED
|
@@ -27,9 +27,9 @@ See documentation at: [https://jupyter-ijavascript-utils.onrender.com/](https://
|
|
|
27
27
|
|
|
28
28
|
## Get Sample Data
|
|
29
29
|
|
|
30
|
-
(
|
|
30
|
+
([See the DataSets module for more on sample datasets](https://jupyter-ijavascript-utils.onrender.com/module-datasets.html))
|
|
31
31
|
|
|
32
|
-
(
|
|
32
|
+
([See the ijs module for helpers to use async/await](https://jupyter-ijavascript-utils.onrender.com/module-ijs.html#.await))
|
|
33
33
|
|
|
34
34
|
```
|
|
35
35
|
//-- get the data
|
|
@@ -44,7 +44,7 @@ utils.ijs.await(async ($$, console) => {
|
|
|
44
44
|
|
|
45
45
|
Then we can group using a process similar to d3js
|
|
46
46
|
|
|
47
|
-
(
|
|
47
|
+
([See the Group Module for more on grouping](https://jupyter-ijavascript-utils.onrender.com/module-group.html))
|
|
48
48
|
|
|
49
49
|
```
|
|
50
50
|
//-- get the min max of the types of barley
|
|
@@ -92,7 +92,7 @@ barleyByVarietyYear = utils.group.by(barley, 'variety', 'year')
|
|
|
92
92
|
|
|
93
93
|
## Aggregating
|
|
94
94
|
|
|
95
|
-
(
|
|
95
|
+
([See the Aggregation module for more](https://jupyter-ijavascript-utils.onrender.com/module-aggregate.html))
|
|
96
96
|
|
|
97
97
|
```
|
|
98
98
|
utils.group.by(barley, 'variety', 'site')
|
|
@@ -133,7 +133,7 @@ returns
|
|
|
133
133
|
|
|
134
134
|
## Render as a Table
|
|
135
135
|
|
|
136
|
-
(
|
|
136
|
+
([See the TableGenerator class for more](https://jupyter-ijavascript-utils.onrender.com/TableGenerator.html))
|
|
137
137
|
|
|
138
138
|
```
|
|
139
139
|
new utils.TableGenerator(barley)
|
|
@@ -162,18 +162,32 @@ utils.vega.svg((vl) => vl.markPoint()
|
|
|
162
162
|
|
|
163
163
|
## Render Charts
|
|
164
164
|
|
|
165
|
+
([See the vega module for more](https://jupyter-ijavascript-utils.onrender.com/module-vega.html))
|
|
166
|
+
|
|
165
167
|

|
|
166
168
|
|
|
167
169
|
## Create a Data Driven Map
|
|
168
170
|
|
|
171
|
+
([See the Data Driven Maps Tutorial for More](https://jupyter-ijavascript-utils.onrender.com/tutorial-vega_choroplethLong.html))
|
|
172
|
+
|
|
169
173
|

|
|
170
174
|
|
|
171
175
|
## Render Maps
|
|
172
176
|
|
|
177
|
+
([See the Leaflet module for more](https://jupyter-ijavascript-utils.onrender.com/module-leaflet.html))
|
|
178
|
+
|
|
173
179
|

|
|
174
180
|
|
|
181
|
+
## Generate Text Driven Diagrams
|
|
182
|
+
|
|
183
|
+
([See the PlantUML module for more](https://jupyter-ijavascript-utils.onrender.com/module-plantuml.html))
|
|
184
|
+
|
|
185
|
+

|
|
186
|
+
|
|
175
187
|
## Render Other Libraries
|
|
176
188
|
|
|
189
|
+
([See the Html Script Tutorial for more](https://jupyter-ijavascript-utils.onrender.com/tutorial-htmlScript.html))
|
|
190
|
+
|
|
177
191
|
```
|
|
178
192
|
utils.ijs.htmlScript({
|
|
179
193
|
scripts: ['https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js'],
|
|
@@ -188,7 +202,7 @@ utils.ijs.htmlScript({
|
|
|
188
202
|
|
|
189
203
|
## Create Animations
|
|
190
204
|
|
|
191
|
-
(See the
|
|
205
|
+
(See the [Noise Visualization Tutorial](https://jupyter-ijavascript-utils.onrender.com/tutorial-noiseVisualization.html) or [SVG Module](file:///Users/proth/Documents/notebooks/jupyter-ijavascript-utils/docs/module-svg.html) for more)
|
|
192
206
|
|
|
193
207
|

|
|
194
208
|

|
package/package.json
CHANGED