0
|
1 <tool id="impute_missing_values" name="Impute Missing Values" force_history_refresh="True">
|
|
2 <command interpreter="python">impute.knn.py
|
|
3 -d $dataset
|
|
4 -o ${output}
|
|
5
|
|
6 </command>
|
|
7 <inputs>
|
|
8 <param name="dataset" type="data" format='tabular' label="Matrix with Missing Values"/>
|
|
9 </inputs>
|
|
10 <outputs>
|
|
11 <data format="tabular" name="output" label="Matrix with Missing Values Imputed"/>
|
|
12 </outputs>
|
|
13 <help>
|
|
14 .. class:: infomark
|
|
15
|
|
16 **Impute Missing Values** - Tool to impute missing values (NAs) from a data matrix.
|
|
17
|
|
18 **OUTPUT:** A new matrix without missing values
|
|
19
|
|
20 ----
|
|
21
|
|
22 **Parameters**
|
|
23
|
|
24 - **Matrix with Missing Values** Input matrix that potentially contains missing values
|
|
25
|
|
26 </help>
|
|
27 </tool>
|