You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2016/04/20 00:55:25 UTC

[jira] [Commented] (SPARK-14639) Add `bround` function in Python/R.

    [ https://issues.apache.org/jira/browse/SPARK-14639?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15248848#comment-15248848 ] 

Apache Spark commented on SPARK-14639:
--------------------------------------

User 'dongjoon-hyun' has created a pull request for this issue:
https://github.com/apache/spark/pull/12509

> Add `bround` function in Python/R.
> ----------------------------------
>
>                 Key: SPARK-14639
>                 URL: https://issues.apache.org/jira/browse/SPARK-14639
>             Project: Spark
>          Issue Type: Improvement
>            Reporter: Dongjoon Hyun
>
> This issue aims to expose Scala `bround` function in Python/R API.
> `bround` function is implemented in SPARK-14614 by extending current `round` function.
> We used the following semantics from [Hive|https://github.com/apache/hive/blob/master/ql/src/java/org/apache/hadoop/hive/ql/udf/generic/RoundUtils.java].
> {code}
> public static double bround(double input, int scale) {
>     if (Double.isNaN(input) || Double.isInfinite(input)) {
>       return input;
>     }
>     return BigDecimal.valueOf(input).setScale(scale, RoundingMode.HALF_EVEN).doubleValue();
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org