Angela Waner Posted June 13, 2019 Share Posted June 13, 2019 R node can use command depContVar Link to comment Share on other sites More sharing options...
Jenny Liu 2 Posted June 14, 2019 Share Posted June 14, 2019 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now