@@ -7,8 +7,12 @@ Try the following tutorials and examples to learn and evaluate various features
7
7
- [ Correlation Plot] ( #corrplot )
8
8
- [ Q-Q Plot] ( #qq-plot )
9
9
- [ Marginal Plot] ( #marginal_plot )
10
+ - [ Joint Plot] ( #joint_plot )
11
+ - [ Residual Plot] ( #residual-plot )
12
+ - [ Images] ( #imshow )
10
13
- [ Position Adjustment] ( #pos )
11
14
- [ Scales] ( #scales )
15
+ - [ Axis Position] ( #axis_pos )
12
16
- [ Time Series] ( #time-series )
13
17
- [ Facets] ( #facets )
14
18
- [ Coordinate Systems] ( #coord-sys )
@@ -33,9 +37,19 @@ Try the following tutorials and examples to learn and evaluate various features
33
37
` geomHistogram, geomDensity, geomVLine, geomFreqpoly, geomBoxplot ` :
34
38
* [ distributions.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/distributions.ipynb )
35
39
* [ boxplot_whisker_width.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/boxplot_whisker_width.ipynb )
40
+
41
+ ` geomPie ` :
42
+ * [ geom_pie.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/geom_pie.ipynb )
43
+ * [ annotations_for_pie.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/annotations_for_pie.ipynb )
44
+ * [ stat_count_2d.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/stat_count_2d.ipynb )
36
45
37
- ` geomViolin ` :
46
+ ` geomLollipop ` :
47
+ [ geom_lollipop.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.4.0/geom_lollipop.ipynb )
48
+
49
+ ` geomViolin, geomAreaRidges ` :
38
50
[ geom_violin.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/geom_violin.ipynb )
51
+ [ ridgeline_plot.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/ridgeline_plot.ipynb )
52
+ [ quantile_parameters.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.3.0/quantile_parameters.ipynb )
39
53
40
54
` geomDotplot ` :
41
55
[ geom_dotplot] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/geom_dotplot.ipynb )
@@ -44,12 +58,14 @@ Try the following tutorials and examples to learn and evaluate various features
44
58
[ geom_ydotplot.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/geom_ydotplot.ipynb )
45
59
46
60
` geomErrorBar, geomLine, geomPoint, geomBar, geomCrossbar, geomLineRange, geomPointRange ` :
47
- [ error_bars.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/error_bars.ipynb )
61
+ * [ error_bars.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/error_bars.ipynb )
62
+ * [ horizontal_error_bars.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.4.0/horizontal_error_bars.ipynb )
48
63
49
64
` geomPoint, geomSmooth (statSmooth) ` :
50
65
51
66
- [ scatter_plot.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/scatter_plot.ipynb )
52
67
- [ geom_smooth.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/geom_smooth.ipynb )
68
+ - [ aes_stroke.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.4.0/aes_stroke.ipynb )
53
69
54
70
` geomDensity2D, geomDensity2DFilled, geomBin2D, geomPolygon, geomPoint ` :
55
71
[ density_2d.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/density_2d.ipynb )
@@ -60,6 +76,7 @@ Try the following tutorials and examples to learn and evaluate various features
60
76
` geomText, geomLabel ` , label format:
61
77
* [ label_format.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/label_format.ipynb )
62
78
* [ geom_label.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/geom_label.ipynb )
79
+ * [ geom_text_and_label_features.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.1.1/geom_text_and_label_new_features.ipynb )
63
80
64
81
<a id =" corrplot " ></a >
65
82
#### Correlation Plot
@@ -79,10 +96,29 @@ Try the following tutorials and examples to learn and evaluate various features
79
96
80
97
* [ marginal_layers.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/marginal_layers.ipynb )
81
98
99
+ <a id =" joint_plot " ></a >
100
+ #### Joint Plot
101
+
102
+ * [ joint_plot.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.3.0/joint_plot.ipynb )
103
+
104
+ * <a id =" residual_plot " ></a >
105
+ #### Residual Plot
106
+
107
+ * [ residual_plot.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/residual_plot.ipynb )
108
+
109
+ * <a id =" imshow " ></a >
110
+ #### Images
111
+
112
+ * [ image_101.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/image_101.ipynb )
113
+ * [ image_fisher_boat.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/image_fisher_boat.ipynb )
114
+ * [ image_grayscale.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/image_grayscale.ipynb )
115
+ * [ image_extent.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/image_extent.ipynb )
116
+
82
117
<a id =" pos " ></a >
83
118
#### Position Adjustment
84
119
85
120
* ` positionDodge() ` : [ error_bars.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/error_bars.ipynb )
121
+ * ` positionDodgeV() ` : [ horizontal_error_bars.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.4.0/horizontal_error_bars.ipynb )
86
122
* ` positionJitter() ` : [ scatter_plot.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/scatter_plot.ipynb )
87
123
* ` positionStack(), positionFill() ` : [ position_stack.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/position_stack.ipynb )
88
124
@@ -97,6 +133,9 @@ Try the following tutorials and examples to learn and evaluate various features
97
133
* ` scaleFillHue, scaleFillGrey, scaleColorGradient ` : [ contours.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/contours.ipynb )
98
134
* ` Viridis scales ` : [ colors_viridis.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/colors_viridis.ipynb )
99
135
136
+ <a id =" axis_pos " ></a >
137
+ ##### Axis Position
138
+ * [ axis_position.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.3.0/axis_position.ipynb )
100
139
101
140
<a id =" time-series " ></a >
102
141
#### Time Series
@@ -139,7 +178,7 @@ _gggrid()_
139
178
140
179
A simple utility which you can use to arrange plots in a regular grid.
141
180
142
- * [ correlation_plot .ipynb] ( https://nbviewer.jupyter. org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/correlation_plot .ipynb )
181
+ * [ plot_grid .ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.3.0/plot_grid .ipynb )
143
182
144
183
145
184
<a id =" as_discrete " ></a >
@@ -211,4 +250,5 @@ See: [Sampling in Lets-Plot](https://github.com/JetBrains/lets-plot-kotlin/blob/
211
250
See [ GeoTools Support] ( https://github.com/JetBrains/lets-plot-kotlin/blob/master/docs/geotools.md ) .
212
251
213
252
* [ geotools_naturalearth.ipynb] ( https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/geotools_naturalearth.ipynb )
214
- * [ geom_label.ipynb] ( http://localhost:8888/notebooks/examples/jupyter-notebooks/geom_label.ipynb )
253
+ * [ geom_label.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/geom_label.ipynb )
254
+ * [ projection_provided.ipynb] ( https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.2.0/projection_provided.ipynb )
0 commit comments