PennController for IBEX › Forums › Support › Controller Name Column in Results Missing Data › Reply To: Controller Name Column in Results Missing Data
Hi Max,
Thank you for reporting this bug. It has independently been brought to my attention recently, it’s a bug that was introduced with the new results-generation algorithm. It is independent from PennController, which explains why you observed it with all versions you tried. Same about the browsers: the problem lies with the farm’s code
I am reluctant to update the farm’s code just for this, as this sort of operations always come with a risk of extended downtime. In the meantime, assuming you don’t need the information in the Controller column, you can easily drop that column name in R: names(results) <- names(results)[c(1,2,seq(4,length(names(results))))]
—or you can simply read the results file with no column names first, and then manually name the columns yourself
Re. saving the results file on the old farm: you can click the eye icon to open the results in a new tab and then use your browser’s menu’s File>Save option, it’s faster and safer than copying and pasting the text in a new file
Jeremy