Skip to content
Snippets Groups Projects
Commit c71b12d6 authored by Xia, Ning's avatar Xia, Ning :penguin:
Browse files

fix typo

parent 354caac6
No related branches found
No related tags found
No related merge requests found
......@@ -96,8 +96,8 @@ def cal_mean_and_standard_deviation(data: np.ndarray) -> np.ndarray:
# DONE #
def get_start_end_temprature(
temprature_data: np.ndarray, threshold: float
def get_start_end_temperature(
temperature_data: np.ndarray, threshold: float
) -> Tuple[float, float]:
"""Calculates the average high and low temperatures from a dataset.
......@@ -116,7 +116,7 @@ def get_start_end_temprature(
"""
# TODO: Complete the function.
# Hint: thetemprature_data should contain the raw data of the sensors.
# Hint: the temperature_data should contain the raw data of the sensors.
# numpy.ndarray.flatten() function may be useful for multidimensionale arrays.
# This line of code throws an exception. This is just to make sure you can see
# all the code you need to refine. If you already know how to implement the program
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment