Data360 Analyze

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

Here are some useful links where you can find more information:

Product Announcements  Product Documentation  Ideas Portal

Discussions

Members

Resources

Events

 View Only
  • 1.  Power R - 'Error: Object "field name" not found'

    Employee
    Posted 12-20-2016 13:02

    It looks like we need to specify the data frame before we call a vector - what is the name of the data frame used within Dataverse?



  • 2.  RE: Power R - 'Error: Object "field name" not found'

    Employee
    Posted 12-20-2016 13:17

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

    Drew, it should just be pass-through R code, so you would use something like the following:

    NOTE: in the following example "in1" represents the name of the input pin for the node and "out1" represents the name of the output pin for the node.  These names can be seen in the "define" tab near the bottom.


    myRData = in1

    # do something with the data
    #...

    out1 = data.frame(myRData)

     

    Let me know if this doesn't answer the question.



  • 3.  RE: Power R - 'Error: Object "field name" not found'

    Employee
    Posted 12-20-2016 15:19

    Excellent - works great. Thanks!