public double Media(int coluna)
        {
            double result = 0;

            result = Linhas.Average(x => Convert.ToDouble(((this[x, coluna] != null && this[x, coluna].ToString() != string.Empty) ? this[x, coluna] : 0)));

            return(result);
        }