コード例 #1
0
ファイル: DataFrame.java プロジェクト: briljant/briljant
 /**
  * Returns a vector of the minimum value of each column in the data frame
  *
  * @return a vector of the minimum value of each column in the data frame
  */
 default Vector min() {
   return collect(
       Object.class,
       org.briljantframework.data.Collectors.withFinisher(
           Collectors.minBy(ObjectComparator.getInstance()), Optional::get));
 }