All Versions
34
Latest Version
Avg Release Cycle
35 days
Latest Release
131 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v0.0.26-SNAPSHOT
August 04, 2020 -
v0.0.26.demos1
August 04, 2020 -
v0.0.25-SNAPSHOT Changes
July 31, 2020โ Added
- scale_x_reverse, scale_y_reverse
- scale_x_sqrt, scale_y_sqrt
-
v0.0.24-SNAPSHOT Changes
July 27, 2020โ Added
- scale_x_log10, scale_y_log10
- scale_alpha
๐ Changed
- โฌ๏ธ Lets-Plot core version upgraded to 1.5.1-SNAPSHOT
๐ Fixed
- NPE on geom_tile when data contains null-s.
- The order of values in the
limits
parameter on discrete scales was ignored.
-
v0.0.23-SNAPSHOT Changes
July 06, 2020[0.0.23-SNAPSHOT] - 2020-07-06
โ Added
- Parameter
expand
in positional scales. - Demo notebooks (GGBunch, Legends & Axis)
๐ Changed
- โฌ๏ธ Lets-Plot core version upgraded to 1.4.4-SNAPSHOT - now without dependencies on Kotlin-test, junit.
๐ Fixed
- Loading Kotlin-numpy when opening demo notebooks at
mybinder.org
.
- Parameter
-
v0.0.23.demos1
July 06, 2020 -
v0.0.22-SNAPSHOT Changes
July 01, 2020[0.0.22-SNAPSHOT] - 2020-07-01
โ Added
- scale_shape()
- as_discrete()
๐ Changed
- scale_color_grey(), scale_fill_grey() : arguments
start
,end
are now in range [0,1] (before was [0,100]). - ๐ Parameter
mapping
(lambda) has been moved to the last position to allow the value to be outside parentheses.
-
v0.0.21-SNAPSHOT Changes
June 29, 2020โ Added
- scale_shape()
๐ Changed
- ๐ Parameter
mapping
(lambda) has been moved to the last position to allow the value to be outside parentheses.
-
v0.0.20-SNAPSHOT Changes
June 25, 2020โ Added
- facet_grid()
- ๐ coord_fixed()
- labs(), xlab(), ylab()
- lims(), xlim(), ylim()
- Geoms:
- geom_jitter()
- geom_bin2d(), stat_bin2d()
- geom_contour(), stat_contour()
- geom_contourf()
- geom_density2d(), stat_density2d()
- geom_density2df()
- geom_smooth(), stat_smooth()
- stat_bin()
- Manual scales:
- scale_fill_manual(), scale_color_manual()
- scale_size_manual()
- scale_shape_manual()
- scale_linetype_manual()
- scale_alpha_manual()
- Identity scales:
- scale_color_identity(), scale_fill_identity()
- scale_shape_identity()
- scale_linetype_identity()
- scale_alpha_identity()
- scale_size_identity()
- Positional scales:
- scale_x_continuous(), scale_y_continuous()
- scale_x_discrete(), scale_y_discrete()
- Brewer color scales:
- scale_color_brewer(), scale_fill_brewer()
๐ Changed
- theme() is now a fluent interface.
๐ Fixed:
- theme composition wasn't working.
-
v0.0.18-SNAPSHOT Changes
June 10, 2020โ Added
Geometries:
- geom_crossbar()
- geom_errorbar()
- geom_freqpoly()
- geom_linerange()
- geom_pointrange()
- geom_polygon()
- geom_ribbon()
- geom_step()
Standardize input data series as List<*>:
- Iterable<*>
- Sequence<*>
- Array<*>
- ByteArray
- ShortArray
- IntArray
- LongArray
- FloatArray
- DoubleArray
- CharArray
Standardize values in the input data series:
- Date, Instant and ZonedDateTime as the number of milliseconds from the epoch of 1970-01-01T00:00:00Z.
- Char as string
๐ Fixed
geom_density:
- defaults: alpha=0, fill=white
- support
weight
aesthetic
geom_histogram: added 'bin' parameters: binCount, binWidth, center, boundary.