public void GetCityWithLowestStandardDeviation_is_Holt()
        {
            var cityWithLowestStandardDeviation = _statistics.GetCityWithLowestStandardDeviation();

            Debug.WriteLine($"{cityWithLowestStandardDeviation} is the city with the lowest standard deviation.");

            Assert.AreEqual("Holt", cityWithLowestStandardDeviation);
        }