本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
FillMissingValues 類別
套件:com.amazonaws.services.glue.ml
object FillMissingValues
Def apply
def apply(frame: DynamicFrame,
missingValuesColumn: String,
outputColumn: String = "",
transformationContext: String = "",
callSite: CallSite = CallSite("Not provided", ""),
stageThreshold: Long = 0,
totalThreshold: Long = 0): DynamicFrame
在指定的欄中填入動態框架的缺少值,並在新的欄中傳回具有估計值的新框架。對於沒有缺少值的列,指定欄的值將被複製到新欄。
frame
— 在其中填入缺少值的 DynamicFrame。必要。missingValuesColumn
— 包含缺少值的欄 (null
值和空字串)。必要。outputColumn
— 新欄的名稱,該欄將包含所有缺少值的列的估計值。選擇性;預設為missingValuesColumn
的值,字尾為"_filled"
。transformationContext
— 用於識別狀態資訊的唯一字串 (選用)。callSite
— 用於提供錯誤報告的內容資訊 (選用)。stageThreshold
— 在錯誤輸出之前,轉換作業中可發生錯誤的次數上限 (選用;預設值為零)。totalThreshold
— 在處理錯誤輸出之前,整體作業可發生錯誤的次數上限 (選用;預設值為零)。
傳回具有一個額外欄的新動態框架,其中包含缺少值的列估計和其他列的目前值。