def total_sum_of_squares(y): """the total squared variation of y_i's from their mean""" return sum(v ** 2 for v in de_mean(y))
def total_sum_of_squares(y): """the total squared variation of y_i's from their mean""" return sum(v ** 2 for v in stats.de_mean(y))
def total_sum_of_squares(y): #y_iと平均の差の二乗和 return sum(v**2 for v in de_mean(y))
def total_sum_of_squares(arrayValoresPropiedades): return sum(v**2 for v in de_mean(arrayValoresPropiedades))