pig tutorial - apache pig tutorial - Apache Pig LOG10() - pig latin - apache pig - pig hadoop
What is LOG10() function?
- Log10 computes the common (base 10) log of its argument x .
- The x argument must be a positive double-precision, floating-point number.
- Log10 returns the common log of its argument, expressed as a double-precision, floating-point number.
Learn Apache Pig - Apache Pig tutorial - Apache Pig Log10 - Apache Pig examples - Apache Pig programs
LOG10() function in Apache Pig
- The LOG10() function of Pig Latin is used to calculate the natural logarithm base 10 value of a given expression.
Syntax
Example
- Ensure that you have a file named wikitechy_math.txt in the HDFS directory /pig_data/.
- This file contains integer and floating point values as given below.
wikitechy_math.txt
- You have loaded this file into Pig with a relation named math_data as given below.
- Now you can calculate the log10 values of the contents of the wikitechy_math.txt file using LOG10() function as given below.
Verification
- Verify the contents of the relation using the Dump operator as given below.
Output
- The above statement stores the result in the relation named log_data.