Python statistics.median_high() Examples
The following are 17
code examples of statistics.median_high().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
statistics
, or try the search function
.
Example #1
Source File: test_statistics.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def test_even_ints(self): # Test median_high with an even number of ints. data = [1, 2, 3, 4, 5, 6] assert len(data)%2 == 0 self.assertEqual(self.func(data), 4)
Example #2
Source File: utils.py From CO2MPAS-TA with European Union Public License 1.1 | 5 votes |
def median_filter(x, y, dx_window, filter=statistics.median_high): """ Calculates the moving median-high of y values over a constant dx. :param x: x data. :type x: Iterable :param y: y data. :type y: Iterable :param dx_window: dx window. :type dx_window: float :param filter: Filter function. :type filter: callable :return: Moving median-high of y values over a constant dx. :rtype: numpy.array """ xy = list(zip(x, y)) _y = [] add = _y.append for v in sliding_window(xy, dx_window): add(filter(list(zip(*v))[1])) return np.array(_y)
Example #3
Source File: test_statistics.py From android_universal with MIT License | 5 votes |
def test_even_decimals(self): # Test median_high works with an even number of Decimals. D = Decimal data = [D('1.1'), D('2.2'), D('3.3'), D('4.4'), D('5.5'), D('6.6')] assert len(data)%2 == 0 random.shuffle(data) self.assertEqual(self.func(data), D('4.4'))
Example #4
Source File: test_statistics.py From android_universal with MIT License | 5 votes |
def test_even_fractions(self): # Test median_high works with an even number of Fractions. F = Fraction data = [F(1, 7), F(2, 7), F(3, 7), F(4, 7), F(5, 7), F(6, 7)] assert len(data)%2 == 0 random.shuffle(data) self.assertEqual(self.func(data), F(4, 7))
Example #5
Source File: test_statistics.py From android_universal with MIT License | 5 votes |
def test_even_ints(self): # Test median_high with an even number of ints. data = [1, 2, 3, 4, 5, 6] assert len(data)%2 == 0 self.assertEqual(self.func(data), 4)
Example #6
Source File: test_statistics.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_even_decimals(self): # Test median_high works with an even number of Decimals. D = Decimal data = [D('1.1'), D('2.2'), D('3.3'), D('4.4'), D('5.5'), D('6.6')] assert len(data)%2 == 0 random.shuffle(data) self.assertEqual(self.func(data), D('4.4'))
Example #7
Source File: test_statistics.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_even_fractions(self): # Test median_high works with an even number of Fractions. F = Fraction data = [F(1, 7), F(2, 7), F(3, 7), F(4, 7), F(5, 7), F(6, 7)] assert len(data)%2 == 0 random.shuffle(data) self.assertEqual(self.func(data), F(4, 7))
Example #8
Source File: test_statistics.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_even_ints(self): # Test median_high with an even number of ints. data = [1, 2, 3, 4, 5, 6] assert len(data)%2 == 0 self.assertEqual(self.func(data), 4)
Example #9
Source File: test_statistics.py From mpyc with MIT License | 5 votes |
def test_secint(self): secint = mpc.SecInt() y = [1, 3, -2, 3, 1, -2, -2, 4] * 5 random.shuffle(y) x = list(map(secint, y)) self.assertEqual(mpc.run(mpc.output(mean(x))), round(statistics.mean(y))) self.assertEqual(mpc.run(mpc.output(variance(x))), round(statistics.variance(y))) self.assertEqual(mpc.run(mpc.output(variance(x, mean(x)))), round(statistics.variance(y))) self.assertEqual(mpc.run(mpc.output(stdev(x))), round(statistics.stdev(y))) self.assertEqual(mpc.run(mpc.output(pvariance(x))), round(statistics.pvariance(y))) self.assertEqual(mpc.run(mpc.output(pstdev(x))), round(statistics.pstdev(y))) self.assertEqual(mpc.run(mpc.output(mode(x))), round(statistics.mode(y))) self.assertEqual(mpc.run(mpc.output(median(x))), round(statistics.median(y))) self.assertEqual(mpc.run(mpc.output(median_low(x))), round(statistics.median_low(y))) self.assertEqual(mpc.run(mpc.output(median_high(x))), round(statistics.median_high(y)))
Example #10
Source File: statistic_functions.py From jhTAlib with GNU General Public License v3.0 | 5 votes |
def MEDIAN_HIGH(df, n, price='Close'): """ High median of data Returns: list of floats = jhta.MEDIAN_HIGH(df, n, price='Close') """ median_high_list = [] if n == len(df[price]): start = None for i in range(len(df[price])): if df[price][i] != df[price][i]: median_high = float('NaN') else: if start is None: start = i end = i + 1 median_high = statistics.median_high(df[price][start:end]) median_high_list.append(median_high) else: for i in range(len(df[price])): if i + 1 < n: median_high = float('NaN') else: start = i + 1 - n end = i + 1 median_high = statistics.median_high(df[price][start:end]) median_high_list.append(median_high) return median_high_list
Example #11
Source File: test_statistics.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_even_decimals(self): # Test median_high works with an even number of Decimals. D = Decimal data = [D('1.1'), D('2.2'), D('3.3'), D('4.4'), D('5.5'), D('6.6')] assert len(data)%2 == 0 random.shuffle(data) self.assertEqual(self.func(data), D('4.4'))
Example #12
Source File: test_statistics.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_even_fractions(self): # Test median_high works with an even number of Fractions. F = Fraction data = [F(1, 7), F(2, 7), F(3, 7), F(4, 7), F(5, 7), F(6, 7)] assert len(data)%2 == 0 random.shuffle(data) self.assertEqual(self.func(data), F(4, 7))
Example #13
Source File: test_statistics.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_even_ints(self): # Test median_high with an even number of ints. data = [1, 2, 3, 4, 5, 6] assert len(data)%2 == 0 self.assertEqual(self.func(data), 4)
Example #14
Source File: test_statistics.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def test_even_decimals(self): # Test median_high works with an even number of Decimals. D = Decimal data = [D('1.1'), D('2.2'), D('3.3'), D('4.4'), D('5.5'), D('6.6')] assert len(data)%2 == 0 random.shuffle(data) self.assertEqual(self.func(data), D('4.4'))
Example #15
Source File: test_statistics.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def test_even_fractions(self): # Test median_high works with an even number of Fractions. F = Fraction data = [F(1, 7), F(2, 7), F(3, 7), F(4, 7), F(5, 7), F(6, 7)] assert len(data)%2 == 0 random.shuffle(data) self.assertEqual(self.func(data), F(4, 7))
Example #16
Source File: average_strategies.py From indy-plenum with Apache License 2.0 | 5 votes |
def get_avg(metrics: List): return median_high(metrics)
Example #17
Source File: utils.py From CO2MPAS-TA with European Union Public License 1.1 | 4 votes |
def clear_fluctuations(times, gears, dt_window): """ Clears the gear identification fluctuations. :param times: Time vector. :type times: numpy.array :param gears: Gear vector. :type gears: numpy.array :param dt_window: Time window. :type dt_window: float :return: Gear vector corrected from fluctuations. :rtype: numpy.array """ xy = [list(v) for v in zip(times, gears)] for samples in sliding_window(xy, dt_window): up, dn = False, False x, y = zip(*samples) for k, d in enumerate(np.diff(y)): if d > 0: up = True elif d < 0: dn = True if up and dn: m = statistics.median_high(y) for v in samples: v[1] = m break return np.array([y[1] for y in xy]) # noinspection PyUnusedLocal