The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"Filter examples by Date"
hughesfleming68
Member Posts: 323 Unicorn
I am having difficulty with the Filter Examples operator with regards to filtering dates.
I am start off by generating a Macro to return the current date/time when I run the process. I would like to use this to filter examples prior to the current date but how to do I get from the format Mar 17,2017 12:16:18 PM CET to 03/23/2017 which the Filter examples operater expects?
Kind regards,
Alex
Tagged:
0
Best Answer
-
MartinLiebig Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert, University Professor Posts: 3,533 RM Data Scientist
Hi Alex,
i would recommend to use the expression option in Filter Examples and write the statement there with the Generate Attribute syntax.
Best,
Martin
- Sr. Director Data Solutions, Altair RapidMiner -
Dortmund, Germany0
Answers
Here is how I did it if anyone needs to do this.
Generate Attribute with the following function expression:- date_str_custom(date_now(),"MM/dd/yyyy")
Extract the Macro
Filter Examples with the default "custom_filters" and add the macro.
I am sure there are other ways but this did the job. Many thanks to Martin!
Regards,
Alex
Alex,
i think you can do
date_str_custom(date_now(),"MM/dd/yyyy")
directly in Filter Examples.
Or use Generate Macro instead of Generate Macro + Extract Macro
~Martin
Dortmund, Germany
Thanks Martin,
You are right. Generating the macro is all you need. I have made the change.