
Daniel Rempel
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Activity overview
Latest activity by Daniel Rempel-
Daniel Rempel commented,
Is it possible in any way to modify which nodes are included in favorites? This would be a phenomenally useful feature.Perhaps currently would there be a way by editing a config file somewhere?
-
Daniel Rempel commented,
I have duplicate records of the same transaction, and want to preserve the most recent one. How can I do that?
-
Daniel Rempel commented,
Using the Transform node to manipulate field names To replace spaces in all field names: ConfigureFields: for field in fields: out1[field.replace(" ","_")] = in1[field] Although frankly I'm a li...
-
Daniel Rempel commented,
Hi, I've been playing around with this some more and was able to accomplish this with a Transform node with the following lines in the Configure Fields property: for field in fields: out1[field....
-
Daniel Rempel commented,
Excellent thank you!
-
Daniel Rempel commented,
I have a dataset where all the field names contain spaces. Rather than entering a new name for each field, could I somehow use python replace(" ","_") to change all the spaces in all the field name...