I read in a csv-file that contains fields with numbers like that: "3". Can I convert this fields from "3" to 3 with PigLatin? I need it to use the SUM() - Function.
Thanks for your help!
|
|
The |
|||
|
|
|
You could write a UDF that strips the quotes around it OR use JacobM's approach. However, afterwards, you should cast the http://pig.apache.org/docs/r0.5.0/piglatin_reference.html#Cast+Operators |
|||
|
|
|
What about just removing the " with REPLACE? For example:
Then you can GROUP and SUM. One advantage is that you can cast the returned string directly to a number (no need to deal with bags). REGEX_EXTRACT could be used to do the same too. |
|||
|