examples_timed_window_wrapper module

examples_timed_window_wrapper.avg_of_max_and_min_in_timed_list(timed_list, state)[source]
examples_timed_window_wrapper.avg_of_max_and_min_values_in_all_timed_lists(list_of_timed_lists, state)[source]
examples_timed_window_wrapper.diff_of_counts_in_lists(list_of_two_lists)[source]
examples_timed_window_wrapper.exponential_smoothed_timed_windows(input_stream, func, alpha, window_size, step_size, initial_state)[source]

Parameters

input_stream: Stream
A previously defined stream This is the only input stream of the agent.
func: function
func operates on a list of TimeAndValue objects and returns an object that can be smoothed exponentially.
alpha: number
The exponential smoothing parameter.
window_size, step_size, initial_state:
Already defined.
examples_timed_window_wrapper.max_and_min_of_values_in_timed_list(timed_list)[source]
examples_timed_window_wrapper.max_and_min_values_in_all_timed_lists(list_of_timed_lists)[source]
examples_timed_window_wrapper.max_sums_timed_windows(list_of_timed_lists, state)[source]
examples_timed_window_wrapper.sum_values_in_all_timed_lists(list_of_timed_lists)[source]
examples_timed_window_wrapper.sum_values_in_timed_list(timed_list)[source]