这个MIN()Pig Latin 的函数用于获取 single-column 包中某个列的最小(最低)值(数字或字符数组)。在计算最小值时,MIN()函数忽略 NULL 值。
注意~’
为了得到全局最小值,我们需要执行一个Group All操作,并使用 MIN() 函数计算最小值。
要获得组的最小值,我们需要使用Group By运算符并继续执行最小函数。
用法
下面给出的是MIN()函数。
grunt> MIN(expression)
示例
假设我们有一个名为student_details.txt在 HDFS 目录中/pig_data/如下所示。
student_details.txt
001,Rajiv,Reddy,21,9848022337,Hyderabad,89 002,siddarth,Battacharya,22,9848022338,Kolkata,78 003,Rajesh,Khanna,22,9848022339,Delhi,90 004,Preethi,Agarwal,21,9848022330,Pune,93 005,Trupthi,Mohanthy,23,9848022336,Bhuwaneshwar,75 006,Archana,Mishra,23,9848022335,Chennai,87 007,Komal,Nayak,24,9848022334,trivendram,83 008,Bharathi,Nambiayar,24,9848022333,Chennai,72
我们已经将此文件加载到 Pig 中,关系名为student_details如下所示。
grunt> student_details = LOAD 'hdfs://localhost:9000/pig_data/student_details.txt' USING PigStorage(',')
as (id:int, firstname:chararray, lastname:chararray, age:int, phone:chararray, city:chararray, gpa:int);
计算最低 GPA
我们可以使用 内置 函数MIN()(区分大小写)从一组给定的数值计算最小值。让我们将关系分组student_details使用Group All运算符,并将结果存储在名为的关系中student_group_all如下所示
grunt> student_group_all = Group student_details All;
它将产生如下所示的关系。
grunt> Dump student_group_all; (all,{(8,Bharathi,Nambiayar,24,9848022333,Chennai,72), (7,Komal,Nayak,24,9848022 334,trivendram,83), (6,Archana,Mishra,23,9848022335,Chennai,87), (5,Trupthi,Mohan thy,23,9848022336,Bhuwaneshwar,75), (4,Preethi,Agarwal,21,9848022330,Pune,93), (3 ,Rajesh,Khanna,22,9848022339,Delhi,90), (2,siddarth,Battacharya,22,9848022338,Ko lkata,78), (1,Rajiv,Reddy,21,9848022337,Hyderabad,89)})
现在让我们计算 GPA 的全局最小值,即所有学生的 GPA 值中的最小值,使用MIN()函数如下图。
grunt> student_gpa_min = foreach student_group_all Generate
(student_details.firstname, student_details.gpa), MIN(student_details.gpa);
确认
验证关系student_gpa_min使用DUMP操作符如下图。
grunt> Dump student_gpa_min;
输出
它将产生以下输出,显示关系的内容student_gpa_min。
(({(Bharathi),(Komal),(Archana),(Trupthi),(Preethi),(Rajesh),(siddarth),(Rajiv) } , { (72) , (83) , (87) , (75) , (93) , (90) , (78) , (89) }) ,72)
相关用法
- Apache Pig MAX()用法及代码示例
- Apache Pig MilliSecondsBetween()用法及代码示例
- Apache Pig MinutesBetween()用法及代码示例
- Apache Pig MonthsBetween()用法及代码示例
- Apache Pig HoursBetween()用法及代码示例
- Apache Pig TOKENIZE()用法及代码示例
- Apache Pig SQRT()用法及代码示例
- Apache Pig TAN()用法及代码示例
- Apache Pig TOMAP()用法及代码示例
- Apache Pig TOTUPLE()用法及代码示例
- Apache Pig EqualsIgnoreCase()用法及代码示例
- Apache Pig GetHour()用法及代码示例
- Apache Pig EXP()用法及代码示例
- Apache Pig CurrentTime()用法及代码示例
- Apache Pig UPPER()用法及代码示例
- Apache Pig PluckTuple()用法及代码示例
- Apache Pig UCFIRST()用法及代码示例
- Apache Pig LAST_INDEX_OF()用法及代码示例
- Apache Pig GetMonth()用法及代码示例
- Apache Pig COUNT_STAR()用法及代码示例
注:本文由纯净天空筛选整理自 Apache Pig - MIN()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。