Java 类名:com.alibaba.alink.pipeline.dataproc.Imputer
Python 类名:Imputer

功能介绍

填充缺失值,生成的模型可以用于其他数据的预处理过程
支持的填充策略包含最大值,最小值,均值和指定数值,默认为均值填充

参数说明

名称 中文名称 描述 类型 是否必须? 取值范围 默认值
selectedCols 选择的列名 计算列对应的列名列表 String[]
fillValue 填充缺失值 自定义的填充值。当strategy为value时,读取fillValue的值 String null
modelFilePath 模型的文件路径 模型的文件路径 String null
outputCols 输出结果列列名数组 输出结果列列名数组,可选,默认null String[] null
overwriteSink 是否覆写已有数据 是否覆写已有数据 Boolean false
strategy 缺失值填充规则 缺失值填充的规则,支持mean,max,min或者value。选择value时,需要读取fillValue的值 String “MEAN”, “MIN”, “MAX”, “VALUE” “MEAN”
numThreads 组件多线程线程个数 组件多线程线程个数 Integer 1
modelStreamFilePath 模型流的文件路径 模型流的文件路径 String null
modelStreamScanInterval 扫描模型路径的时间间隔 描模型路径的时间间隔,单位秒 Integer 10
modelStreamStartTime 模型流的起始时间 模型流的起始时间。默认从当前时刻开始读。使用yyyy-mm-dd hh:mm:ss.fffffffff格式,详见Timestamp.valueOf(String s) String null

代码示例

Python 代码

  1. from pyalink.alink import *
  2. import pandas as pd
  3. useLocalEnv(1)
  4. df = pd.DataFrame([
  5. ["a", 10.0, 100],
  6. ["b", -2.5, 9],
  7. ["c", 100.2, 1],
  8. ["d", -99.9, 100],
  9. ["a", 1.4, 1],
  10. ["b", -2.2, 9],
  11. ["c", 100.9, 1],
  12. [None, None, None]
  13. ])
  14. colnames = ["col1", "col2", "col3"]
  15. selectedColNames = ["col2", "col3"]
  16. inOp = BatchOperator.fromDataframe(df, schemaStr='col1 string, col2 double, col3 double')
  17. sinOp = StreamOperator.fromDataframe(df, schemaStr='col1 string, col2 double, col3 double')
  18. model = Imputer()\
  19. .setSelectedCols(selectedColNames)\
  20. .fit(inOp)
  21. model.transform(inOp).print()
  22. model.transform(sinOp).print()
  23. StreamOperator.execute()

Java 代码

  1. import org.apache.flink.types.Row;
  2. import com.alibaba.alink.operator.batch.BatchOperator;
  3. import com.alibaba.alink.pipeline.dataproc.Imputer;
  4. import com.alibaba.alink.pipeline.dataproc.ImputerModel;
  5. import com.alibaba.alink.operator.batch.source.MemSourceBatchOp;
  6. import com.alibaba.alink.operator.stream.StreamOperator;
  7. import com.alibaba.alink.operator.stream.source.MemSourceStreamOp;
  8. import org.junit.Test;
  9. import java.util.Arrays;
  10. import java.util.List;
  11. public class ImputerTrainBatchOpTest {
  12. @Test
  13. public void testImputerTrainBatchOp() throws Exception {
  14. List <Row> df_data = Arrays.asList(
  15. Row.of("a", 10.0, 100),
  16. Row.of("b", -2.5, 9),
  17. Row.of("c", 100.2, 1),
  18. Row.of("d", -99.9, 100),
  19. Row.of("a", 1.4, 1),
  20. Row.of("b", -2.2, 9),
  21. Row.of("c", 100.9, 1),
  22. Row.of(null, null, null)
  23. );
  24. String[] selectedColNames = new String[] {"col2", "col3"};
  25. BatchOperator <?> inOp = new MemSourceBatchOp(df_data, "col1 string, col2 double, col3 int");
  26. ImputerModel imputerModel = new Imputer()
  27. .setSelectedCols(selectedColNames)
  28. .fit(inOp);
  29. imputerModel.transform(inOp).print();
  30. StreamOperator <?> sinOp = new MemSourceStreamOp(df_data, "col1 string, col2 double, col3 int");
  31. imputerModel.transform(inOp).print();
  32. StreamOperator.execute();
  33. }
  34. }

运行结果

| col1 | col2 | col3 | | —- | —- | —- |

| a | 10.000000 | 100 |

| b | -2.500000 | 9 |

| c | 100.200000 | 1 |

| d | -99.900000 | 100 |

| a | 1.400000 | 1 |

| b | -2.200000 | 9 |

| c | 100.900000 | 1 |

| null | 15.414286 | 31 |