You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Xiangrui Meng (JIRA)" <ji...@apache.org> on 2015/10/29 20:18:27 UTC

[jira] [Created] (SPARK-11408) Display scientific notation correctly in DataFrame.show()

Xiangrui Meng created SPARK-11408:
-------------------------------------

             Summary: Display scientific notation correctly in DataFrame.show()
                 Key: SPARK-11408
                 URL: https://issues.apache.org/jira/browse/SPARK-11408
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 1.5.1, 1.6.0
            Reporter: Xiangrui Meng


{code}
scala> sqlContext.range(2).select(col("id") / 3e5).show()
+--------------------+
|     (id / 300000.0)|
+--------------------+
|                 0.0|
|3.333333333333333...|
+--------------------+
{code}

The exponential term is omitted, which is error-prone. We should format the numbers properly based on column width.



--
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