Exemple #1
0
 /// <summary>
 /// Retrieves a column by its name.
 /// </summary>
 public NumericColumn GetColumn(string colname, int[] rows = null)
 {
     return(_src.GetColumn(colname, rows == null ? _rows : ComposeArrayInt(_rows, rows)));
 }