@@ -8,56 +8,56 @@ GeoTools [v 33.2](https://github.com/geotools/geotools/releases/tag/33.2)
88- Geometries:
99 - ` geomPointDensity() ` [[ #1370 ] ( https://github.com/JetBrains/lets-plot/issues/1370 )] .
1010
11- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/geom_pointdensity.html ) .
11+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/geom_pointdensity.html ) .
1212
1313 - Geoms with 1-to-1 statistics (such as ` geomQQ() ` , ` geomSina() ` ) preserve the mapping to original data after statistical transformation.
1414
15- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/stat_data_bijection.html ) .
15+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/stat_data_bijection.html ) .
1616
1717 - ` geomHistogram() ` : custom bin bounds (parameter ` breaks ` ) [[ #1382 ] ( https://github.com/JetBrains/lets-plot/issues/1382 )] .
1818
19- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/geom_histogram_param_breaks.html ) .
19+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/geom_histogram_param_breaks.html ) .
2020
2121- Plot Layout:
2222 - The legend automatically wraps to prevent overlap - up to 15 rows for vertical legends and 5 columns for horizontal ones [[ #1235 ] ( https://github.com/JetBrains/lets-plot/issues/1235 )] .
2323
24- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/legend_wrap.html ) .
24+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/legend_wrap.html ) .
2525
2626 - ` gggrid() ` : support for shared legends (parameter ` guides ` ).
2727
28- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/gggrid_legend_collect.html ) .
28+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/gggrid_legend_collect.html ) .
2929
3030- Plot Theme:
3131 - ` flavorStandard() ` sets the theme's default color scheme [[ #1277 ] ( https://github.com/JetBrains/lets-plot/issues/1277 )] . <br >
3232 Use to override other flavors or to make defaults explicit.
3333
34- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/flavor_standard.html ) .
34+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/flavor_standard.html ) .
3535
3636 - ` themeGray() ` as an alias for ` themeGrey() ` .
3737
3838 - New ` theme ` functions for setting legend justification: ` legendJustificationTop() ` , ` legendJustificationRight() ` , <br >
3939 ` legendJustificationBottom() ` , and ` legendJustificationLeft() ` .
4040
41- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/legend_justification.html ) .
41+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/legend_justification.html ) .
4242
4343 - Support for inward axis ticks.
4444
45- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/axis_tick_direction.html ) .
45+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/axis_tick_direction.html ) .
4646
4747- Markdown:
4848 - Support for ` target ` attribute for links.
4949 - Links now open in a new tab by default [[ #1397 ] ( https://github.com/JetBrains/lets-plot/issues/1397 )] .
5050
5151- ` ggtb() ` : ` sizeZoomin ` and ` sizeBasis ` parameters for geometry scaling [[ #1369 ] ( https://github.com/JetBrains/lets-plot/issues/1369 )] .
5252
53- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/ggtb_size_zoomin.html ) .
53+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/ggtb_size_zoomin.html ) .
5454
5555
5656### Changed
5757
5858- [ ** BREAKING** ] Explicit ` group ` aesthetic now overrides default grouping behavior instead of combining with it [[ #1401 ] ( https://github.com/JetBrains/lets-plot/issues/1401 )] .
5959
60- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/group_override_defaults.html ) .
60+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/group_override_defaults.html ) .
6161
6262> [ !IMPORTANT]
6363> Previously, setting ` group="variable" ` would group by both the explicit variable AND any discrete
@@ -68,7 +68,7 @@ GeoTools [v 33.2](https://github.com/geotools/geotools/releases/tag/33.2)
6868
6969- Missing values in ` geomLine(), geomPath(), geomRibbon() ` , and ` geomArea() ` create gaps in geometries instead of being interpolated over [[ #818 ] ( https://github.com/JetBrains/lets-plot/issues/818 )] , [[ #1406 ] ( https://github.com/JetBrains/lets-plot/issues/1406 )] .
7070
71- See: [ example notebook] ( https://lets-plot.org/ kotlin/releases /f-4.12.0/missing_values_line_path_area_ribbon.html ) .
71+ See: [ example notebook] ( https://raw.githack.com/JetBrains/ lets-plot- kotlin/refs/heads/master/docs/examples/jupyter-notebooks /f-4.12.0/missing_values_line_path_area_ribbon.html ) .
7272
7373- ` theme ` : the ` exponentFormat ` default value changed to ` "pow" ` - superscript powers of 10 (was e-notation).
7474
0 commit comments