We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62f4e7d commit ae2ee7aCopy full SHA for ae2ee7a
README.md
@@ -34,6 +34,7 @@ plugins {
34
repositories {
35
mavenCentral()
36
}
37
+
38
dependencies {
39
implementation("org.jetbrains.kotlinx:dataframe:0.10.0")
40
@@ -124,10 +125,10 @@ clean
124
125
recentDelays.maxOrNull { delay1 and delay2 } into "major delay"
126
127
// separate lists of recent delays for `delay1`, `delay2` and `delay3`
- recentDelays.implode(dropNulls = true) into "recent delays"
128
+ recentDelays.implode(dropNA = true) into "recent delays"
129
130
// total delay per destination
- pivot { destination }.sum { recentDelays.intCols() } into "total delays to"
131
+ pivot { destination }.sum { recentDelays.colsOf<Int?>() } into "total delays to"
132
133
```
134
0 commit comments