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
Filtering on a data set by date
in sql depending on type there are various ways to filter by date on days. Is there a way to easily do this in rapidminer operators? For example if I only wanted to capture data that goes back 180 days from today (date now)?
Tagged:
1
Best Answer
-
davidb Member Posts: 4 Contributor IThanks, I this is what I ended up doing.
seemed easier to manage the dates after converting them to epoch
generate attributes:
date_millis(date_now())-15552000000
generate second attribute converting date to epoch again:
date_millis(TEST_DATE)
Then filter based on expression
test_date_epoch>=date180_epoch
1
Answers