I'm having trouble finding the similar function in KNIME to the reshape/ dcast-function in R.
I am trying to transform a matrix in long.format data with the follwing columns: ID, measurement (1,2,3...), variable (several variable names) into the a wide-format data matrix with: ID, variable1 (+measurement), variable2 (+measurement).
Very much the same like in this article: http://seananderson.ca/2013/10/19/reshape.html
Does anyone know if this function is available in KNIME, too?`Or is there a workaround with the "group by" function?
The nodes responsible for reshape magic are called Pivot and Unpivot, in an SQL fashion. Alternatively, you can simple use the R integration nodes to use the beloved reshape2, which is indeed one of the best and easiest to use implementations of the said functionality in practically any statistical software package.