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.
Files changed (3) hide show
  1. package/DOCS.md +6 -0
  2. package/README.md +20 -6
  3. package/package.json +1 -1
package/DOCS.md CHANGED
@@ -192,6 +192,12 @@ and more from {@link module:vega}
192
192
 
193
193
  ![Screenshot of Leaflet](img/leafletRenderMarkers.png)
194
194
 
195
+ ## Generate Text Driven Diagrams
196
+
197
+ ({@link module:plantuml|See the PlantUML module for more})
198
+
199
+ ![Screenshot of PlantUML](https://jupyter-ijavascript-utils.onrender.com/img/plantumlSequence.png)
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
- ({@link module:datasets|See the DataSets module for more on sample datasets})
30
+ ([See the DataSets module for more on sample datasets](https://jupyter-ijavascript-utils.onrender.com/module-datasets.html))
31
31
 
32
- ({@link module:ijs.await|See the ijs module for helpers to use async/await})
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
- ({@link module:group|see the Group module for more on grouping})
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
- ({@link module:aggregate|See the Aggregation module for more})
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
- ({@link TableGenerator|See the TableGenerator class for more})
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
  ![Screenshot of Vega Cell](https://jupyter-ijavascript-utils.onrender.com/img/BarleyYieldBySite.png)
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
  ![Screenshot of choropleth](https://jupyter-ijavascript-utils.onrender.com/img/choropleth_workingFull.svg)
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
  ![Screenshot of Leaflet](https://jupyter-ijavascript-utils.onrender.com/img/leafletRenderMarkers.png)
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
+ ![Screenshot of PlantUML](https://jupyter-ijavascript-utils.onrender.com/img/plantumlSequence.png)
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 {@tutorial noiseVisualization} tutorial or {@link module:svg|svg module} for more)
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
  ![Screenshot of dark animation](https://jupyter-ijavascript-utils.onrender.com/img/svgAnimation2Dark.gif)
194
208
  ![Screenshot of light animation](https://jupyter-ijavascript-utils.onrender.com/img/svgAnimation2Light.gif)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyter-ijavascript-utils",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Utilities for working with iJavaScript - a Jupyter Kernel",
5
5
  "homepage": "https://jupyter-ijavascript-utils.onrender.com/",
6
6
  "main": "src/index.js",