"windowing a discontinuous data set"
Hello,
I have a set of intraday data over several days. I am using the windowing operator on it.
The window size is small with regard to the number of intraday data so most of the windowed examples are made of data from the same day, but this operator will, as expected, create some examples that include data from 2 different days.
I would like to remove those examples as they make no sense.
Any idea for creating this kind of filter??
Thank you very much for your help.
I have a set of intraday data over several days. I am using the windowing operator on it.
The window size is small with regard to the number of intraday data so most of the windowed examples are made of data from the same day, but this operator will, as expected, create some examples that include data from 2 different days.
I would like to remove those examples as they make no sense.
Any idea for creating this kind of filter??
Thank you very much for your help.
Find more posts tagged with
Sort by:
1 - 3 of
31
Hello Haddock,
Thank you very much for your reply.
I was thinking about something like this:
before windowing I have one attribute called date.
After windowing I have attributes date-99, date-98,...,date-0.
I would basically need to create a filter that keep the example if all values of date-99,date-98,....,date-0 are all the same and remove it otherwise.
Does it make any sense?
thank you
Thank you very much for your reply.
I was thinking about something like this:
before windowing I have one attribute called date.
After windowing I have attributes date-99, date-98,...,date-0.
I would basically need to create a filter that keep the example if all values of date-99,date-98,....,date-0 are all the same and remove it otherwise.
Does it make any sense?
thank you
You can probably get what you want by using the "Date to Numerical" operator, which can strip the components from a date_time attribute. In the following example data is filtered by the minute of the timestamp, leaving only those from a quarter past the hour. Have fun 8)