LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  LAE Error Code: ls.brain.node.r..outputVariableNotFound

    Employee
    Posted 06-22-2017 03:49

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: lae_errors

    This post has been created for discussion of error code ls.brain.node.r..outputVariableNotFound.

    Please reply to this thread with any description of error conditions, diagnostic information, and recommended resolutions.


  • 2.  RE: LAE Error Code: ls.brain.node.r..outputVariableNotFound

    Employee
    Posted 06-22-2017 06:08

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: awilliams1024

    This 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!")