@datagrok/eda 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/package.js +1 -1
- package/package.json +1 -1
- package/src/package.ts +3 -3
package/package.json
CHANGED
package/src/package.ts
CHANGED
|
@@ -49,10 +49,10 @@ export async function PCA(table: DG.DataFrame, features: DG.ColumnList, componen
|
|
|
49
49
|
//description: Uniform Manifold Approximation and Projection (UMAP).
|
|
50
50
|
//input: dataframe table {category: Data}
|
|
51
51
|
//input: column_list features {type: numerical; category: Data}
|
|
52
|
-
//input: int components = 2 {caption: Components; category: Hyperparameters} [The number of components (dimensions) to project the data to.]
|
|
52
|
+
//input: int components = 2 {caption: Components; min: 1; max: 20; category: Hyperparameters} [The number of components (dimensions) to project the data to.]
|
|
53
53
|
//input: int epochs = 100 {caption: Epochs; category: Hyperparameters} [The number of epochs to optimize embeddings.]
|
|
54
54
|
//input: int neighbors = 15 {caption: Neighbors; category: Hyperparameters} [The number of nearest neighbors to construct the fuzzy manifold.]
|
|
55
|
-
//input: double minDist = 0.1 {caption: Minimum distance; category: Hyperparameters} [The effective minimum distance between embedded points.]
|
|
55
|
+
//input: double minDist = 0.1 {caption: Minimum distance; min: 0; max: 1; category: Hyperparameters} [The effective minimum distance between embedded points.]
|
|
56
56
|
//input: double spread = 1.0 {caption: Spread; category: Hyperparameters} [The effective scale of embedded points.]
|
|
57
57
|
//output: dataframe result {action:join(table)}
|
|
58
58
|
export async function UMAP(table: DG.DataFrame, features: DG.ColumnList, components: number,
|
|
@@ -321,7 +321,7 @@ export async function applySigmoidKernelSVM(df: DG.DataFrame, model: any): Promi
|
|
|
321
321
|
return await getPrediction(df, model);
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
-
//top-menu: ML |
|
|
324
|
+
//top-menu: ML | Analyze | ANOVA...
|
|
325
325
|
//name: One-way ANOVA
|
|
326
326
|
//description: One-way analysis of variances (ANOVA) determines whether the examined factor has a significant impact on the studied feature.
|
|
327
327
|
//input: dataframe table
|