2017-03-22 6 views

答えて

1

現在、MLスタジオは出力データの第2ポートへのマッピングをサポートしていません。出力セットが意図された追加の列ラベルと回避策を出力することができ、あなたのdata.frameとして

---------- Start of error message from R ---------- 
Error: At this time, there is only 1 output dataset port that can be mapped. Please provide 1 as the portNumber 

を返し

# Map 1-based optional input ports to variables 
dataset1 <- maml.mapInputPort(1) # class: data.frame 

# Select data.frame to be sent to the output Dataset port 
maml.mapOutputPort("dataset1", 1); 
maml.mapOutputPort("dataset1", 2); 

:これは、次のコードを実行することにより確認することができます。次にアクションがRemove entire rowの場合、データを正しい出力に切り捨て、Select Columns in Datasetを使用して不要な列を削除することができます。

関連する問題