私が取り組んでいるプロジェクトのパラメーターを調整するために、SPOT と Java で R を使用しています。.res ファイルは正常に見えます。必要な値が含まれています。私は R と SPOT が初めてで、このエラーについてどこにも見つかりません。これが私が受け取るメッセージです:
Entering spotGetRawResData
Loading result data from:: prueba.res
Leaving spotGetRawResData
SPOT Step: 1
Create Sequential Design
Entering spotGetRawResData
Loading result data from:: prueba.res
Leaving spotGetRawResData
Error in split.default(rawData[, spotConfig$alg.resultColumn], rawData$CONFIG) :
Group length is 0 but data length > 0
SPOT に付属のテンプレート .R ファイルを使用しています。エラーが発生していると思われる場所は次のとおりです。
res <-data.frame(res)
colNames = TRUE
if (file.exists(io.resFileName)){
colNames = FALSE
}
## quote = false is required for JAVA
write.table(res
, file = io.resFileName
, row.names = FALSE
, col.names = colNames
, sep = " "
, append = !colNames
, quote = FALSE
);
colNames = FALSE
spotConfig$alg.currentResult=rbind(spotConfig$alg.currentResult,res);
#always log the results in spotConfig