Skip to content

Commit a6e535e

Browse files
Automated commit of generated code
1 parent 1cf9a9a commit a6e535e

File tree

17 files changed

+1262
-1058
lines changed

17 files changed

+1262
-1058
lines changed
Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
package org.jetbrains.kotlinx.dataframe.api
22

33
@PublishedApi
4-
internal val skipNaN_default: Boolean = false
4+
internal val skipNaNDefault: Boolean = false
55

6+
/**
7+
* Default delta degrees of freedom for the standard deviation (std).
8+
*
9+
* The default is set to `1`,
10+
* meaning DataFrame uses [Bessel’s correction](https://en.wikipedia.org/wiki/Bessel%27s_correction) to calculate the
11+
* "unbiased sample standard deviation" by default.
12+
* This is also the standard in languages like R.
13+
*
14+
* This is different from the "population standard deviation" (where `ddof = 0`),
15+
* which is used in libraries like Numpy.
16+
*/
617
@PublishedApi
7-
internal val ddof_default: Int = 1
18+
internal val ddofDefault: Int = 1

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/max.kt

Lines changed: 146 additions & 147 deletions
Large diffs are not rendered by default.

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/mean.kt

Lines changed: 171 additions & 171 deletions
Large diffs are not rendered by default.

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/min.kt

Lines changed: 146 additions & 147 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)