词汇:geometric[ˌdʒiəˈmetrɪk]

adj. 几何学图形的;几何学的

字根:metr=measure

相关场景

ts_product(x, d):
Returns product of x for the past d days; ts_product(x, d) can be used to calculate geometric mean of data fields. The geometric mean is generally a better method for averaging rates of return, growth rates of fundamentals. For example, geometric mean of daily stock returns for past 10 days can be calculated as: power(ts_product(returns, 10), 1/10)
>> Operators