Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercise 1 (2 points). Write a function, cusum(x, mu), that takes a list of observed temperatures, x, and mean parameter mu as inputs, and then
Exercise 1 (2 points). Write a function, cusum(x, mu), that takes a list of observed temperatures, x, and mean parameter mu as inputs, and then returns a list of the cumulative sum values at each time. Recall that these CuSum values are defined by Assume that S-0, that is, the value at t -1, which is "before"0, is zero. For example S,max 10, S-1-x) x = [20,21,20,19,18,17,15,106,5,4,5,2,5,6,6] mu12 assert cusum(x, m) - [o, 0, 0, 0, 0, 0, 0, 0, 2, 8, 15, 23, 30, 40, 47, 53, 59] In 1: def cusum (x, mu): # YOUR CODE HERE
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started