Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: awilliams1024This error indicates the R node could not find a variable that had the same name as one of the node's output pins.
For example, if the node has a single output pin 'out1' then the R script must include an assignment statement where a
data.frame object is assigned to the 'out1' variable, e.g.
out1 <- data.frame(MyMessage="Hello World!")
or
out1 = data.frame(MyMessage="Hello World!")