- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to parse Design Role property with a script
I need to be able to identify which columns in a DOE data table are factors. I know there is a design role column property.
column(dtDOE, 1) << get property("Design Role");
The problem is that the return value seems to be an unevaluated expression.
DesignRole( Continuous )
Is Missing doesn't work in this context, but even if it did, I want to exclude blocking factors, so I need to somehow parse this thing.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to parse Design Role property with a script
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to parse Design Role property with a script
Try using Arg()
drole_prop = Column(dt, "weight") << Get Property("Design Role");
drole = Arg(drole, 1); // "Continuous"
// Head(drole); // will get the outside expression, Design Role in this case
Note for me design role seems to contain a string so you might have to do some extra tricks to get the "something" type to string
Design Role("Continuous")
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content