Jump to content
The TIBCO Platform is a real-time, composable data platform that will bring together an evolving set of your TIBCO solutions - and it's available now! See more information here ×

R node can use command depContVar


Angela Waner

Recommended Posts

From Python nodes, you should be able to use the InputContainer to access the selected variables on the upstream input node. Something like below,

 

for i in InputContainer:

print("Dep Cats: " + str(i.CategoricalDependentVariables))

print("Dep Conts: " + str(i.ContinuousDependentVariables))

print("Pred Cats: " + str(i.CategoricalPredictors))

print("Pred Conts: " + str(i.ContinuousPredictors))

 

If you are using CPython, it might be better to useActiveDataSet instead of InputContainer to access input tables.

Hope it helps.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...