Question 1: Sliding Window Averagerator Complete the code below, defining a sliding window averagerator. The class should have methods: _init_(self, window_size) to initialize the method and specify the window size; • add(self, x) , to add a value as well as properties avg and std, as in the previous averagerator classes. ### Question 1: Implement a `SlidingWindowAveragerator` class SlidingWindowAveragerator(object): # YOUR CODE HERE def _init_(self, window_size): self.window_size window_size %3D self.values = [] def add(self, x): self.values.append(x) def avg(self): def std(self): # YOUR CODE HERE

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%
Implement a `SlidingWindowAveragerator` in PYTHON
second image are test cases for the functions
 
- Question 1: Sliding Window Averagerator
Complete the code below, defining a sliding window averagerator. The class should have methods:
_init_(self, window_size) to initialize the method and specify the window size;
• add(self, x), to add a value
as well as properties avg and std, as in the previous averagerator classes.
### Question 1: Implement a `SlidingWindowAveragerator`
class SlidingWindowAveragerator(object):
# YOUR CODE HERE
def _init_(self, window_size):
self.window_size = window_size
[]
self.values
def add(self, x):
self.values.append(x)
def avg(self):
def std(self):
# YOUR CODE HERE
Transcribed Image Text:- Question 1: Sliding Window Averagerator Complete the code below, defining a sliding window averagerator. The class should have methods: _init_(self, window_size) to initialize the method and specify the window size; • add(self, x), to add a value as well as properties avg and std, as in the previous averagerator classes. ### Question 1: Implement a `SlidingWindowAveragerator` class SlidingWindowAveragerator(object): # YOUR CODE HERE def _init_(self, window_size): self.window_size = window_size [] self.values def add(self, x): self.values.append(x) def avg(self): def std(self): # YOUR CODE HERE
# 10 points. Then, for more complex cases.
SlidingWindowAveragerator(10)
in range(10):
sa.add(1)
assert sa.avg
assert sa.std
sa =
for
1
SlidingWindowAveragerator(4)
for _ in range (4):
sa.add (3)
assert sa.avg
sa =
3
in range(4):
sa.add(2)
assert sa.avg
for
2
assert sa.std
for _ in range(4):
sa.add(1)
assert sa.avg
assert sa.std
SlidingWindowAveragerator(4)
for x in range(10):
sa.add(x)
if x < 4:
sa =
assert sa.avg
x / 2
else:
assert sa.avg
(2 * X - 3) / 2
SlidingWindowAveragerator(5)
for x in range(10):
sa.add(x)
if x < 5:
assert sa.avg
sa =
= x / 2
=
else:
(2 * x - 4) / 2
assert abs(sa.std - np.sqrt(2)) < 0.001
assert sa.avg
==
Transcribed Image Text:# 10 points. Then, for more complex cases. SlidingWindowAveragerator(10) in range(10): sa.add(1) assert sa.avg assert sa.std sa = for 1 SlidingWindowAveragerator(4) for _ in range (4): sa.add (3) assert sa.avg sa = 3 in range(4): sa.add(2) assert sa.avg for 2 assert sa.std for _ in range(4): sa.add(1) assert sa.avg assert sa.std SlidingWindowAveragerator(4) for x in range(10): sa.add(x) if x < 4: sa = assert sa.avg x / 2 else: assert sa.avg (2 * X - 3) / 2 SlidingWindowAveragerator(5) for x in range(10): sa.add(x) if x < 5: assert sa.avg sa = = x / 2 = else: (2 * x - 4) / 2 assert abs(sa.std - np.sqrt(2)) < 0.001 assert sa.avg ==
Expert Solution
Step 1

the answer for the given question is given below:

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY