Skip to content
This repository was archived by the owner on Jan 28, 2023. It is now read-only.

Commit 507853d

Browse files
committed
v0.17.3 release
1 parent f9576ae commit 507853d

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# krangl
22

3-
[ ![Download](https://img.shields.io/badge/Maven%20Central-0.17.2-orange) ](https://mvnrepository.com/artifact/com.github.holgerbrandl/krangl) [![Build Status](https://github.com/holgerbrandl/krangl/workflows/build/badge.svg)](https://github.com/holgerbrandl/krangl/actions?query=workflow%3Abuild) [![Gitter](https://badges.gitter.im/holgerbrandl/krangl.svg)](https://gitter.im/holgerbrandl/krangl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
3+
[ ![Download](https://img.shields.io/badge/Maven%20Central-0.17.3-orange) ](https://mvnrepository.com/artifact/com.github.holgerbrandl/krangl) [![Build Status](https://github.com/holgerbrandl/krangl/workflows/build/badge.svg)](https://github.com/holgerbrandl/krangl/actions?query=workflow%3Abuild) [![Gitter](https://badges.gitter.im/holgerbrandl/krangl.svg)](https://gitter.im/holgerbrandl/krangl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
44

55
`krangl` is a {K}otlin library for data w{rangl}ing. By implementing a grammar of data manipulation using a modern functional-style API, it allows to filter, transform, aggregate and reshape tabular data.
66

@@ -32,7 +32,7 @@ repositories {
3232
}
3333
3434
dependencies {
35-
implementation "com.github.holgerbrandl:krangl:0.17.2"
35+
implementation "com.github.holgerbrandl:krangl:0.17.3"
3636
}
3737
```
3838
Declaring the repository is purely optional as it is the default already.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ test {
9595
//http://stackoverflow.com/questions/34377367/why-is-gradle-install-replacing-my-version-with-unspecified
9696
group 'com.github.holgerbrandl'
9797
//version '0.16.95'
98-
version '0.17.2'
98+
version '0.17.3'
9999

100100

101101

docs/userguide/docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[ ![Download](https://img.shields.io/badge/Maven%20Central-0.17.2-orange) ](https://mvnrepository.com/artifact/com.github.holgerbrandl.krangl/krangl) [![Build Status](https://github.com/holgerbrandl/krangl/workflows/build/badge.svg)](https://github.com/holgerbrandl/krangl/actions?query=workflow%3Abuild) [![Gitter](https://badges.gitter.im/holgerbrandl/krangl.svg)](https://gitter.im/holgerbrandl/krangl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
1+
[ ![Download](https://img.shields.io/badge/Maven%20Central-0.17.3-orange) ](https://mvnrepository.com/artifact/com.github.holgerbrandl.krangl/krangl) [![Build Status](https://github.com/holgerbrandl/krangl/workflows/build/badge.svg)](https://github.com/holgerbrandl/krangl/actions?query=workflow%3Abuild) [![Gitter](https://badges.gitter.im/holgerbrandl/krangl.svg)](https://gitter.im/holgerbrandl/krangl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
22

33
This is the manual of [krangl](https://github.com/holgerbrandl/krangl).
44

@@ -40,7 +40,7 @@ repositories {
4040
}
4141
4242
dependencies {
43-
implementation "com.github.holgerbrandl:krangl:0.17.2"
43+
implementation "com.github.holgerbrandl:krangl:0.17.3"
4444
}
4545
```
4646
Declaring the repository is purely optional as it is the default already.

src/main/kotlin/krangl/LetsPlot.kt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package krangl
2+
3+
import jetbrains.letsPlot.intern.GenericAesMapping
4+
5+
/** Plot a data-frame with let-plot. To use this mapping add `implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:3.0.1")` or via `%use lets-plot` when using jupyter. */
6+
fun DataFrame.letsPlot(mapping: GenericAesMapping.() -> Unit = {}) = jetbrains.letsPlot.letsPlot(toMap(), mapping)
7+
8+
9+
//fun main() {
10+
// irisData.letsPlot{ x= "Sepal.Width"; y="Sepal.Length"; color="Species"} + geomPoint()
11+
//}

0 commit comments

Comments
 (0)