@datagrok-libraries/statistics
Advanced tools
Comparing version 1.2.1 to 1.2.2
# statistics changelog | ||
## 1.2.1 (2023-08-02) | ||
## 1.2.2 (2023-08-04) | ||
This release focuses on adding new functionality and improving stability. | ||
### Features | ||
*Dependency: datagrok-api >= 1.16.0* | ||
* [#2101](https://github.com/datagrok-ai/public/issues/2101): Changed minBound and maxBound to min and max in parameterBounds | ||
## 1.2.1 (2023-08-02) | ||
### Features | ||
@@ -21,4 +23,2 @@ | ||
*Dependency: datagarok-api >= 1.16.0* | ||
### Features | ||
@@ -44,8 +44,4 @@ | ||
This release focuses on adding new functionality. | ||
*Dependency: datagarok-api >= 1.13.11* | ||
### Features | ||
* Exposed AUC and R2 functions. |
@@ -7,3 +7,3 @@ { | ||
"friendlyName": "statistics", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "", | ||
@@ -10,0 +10,0 @@ "dependencies": { |
@@ -7,4 +7,4 @@ import { Property } from 'datagrok-api/src/entities'; | ||
export declare type FitParamBounds = { | ||
minBound?: number; | ||
maxBound?: number; | ||
min?: number; | ||
max?: number; | ||
}; | ||
@@ -11,0 +11,0 @@ /** Fit function description. Applies to custom user fit functions. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
1897