[
https://issues.apache.org/jira/browse/SPARK-7150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14547794#comment-14547794
]
Apache Spark commented on SPARK-7150:
-------------------------------------
User 'adrian-wang' has created a pull request for this issue:
https://github.com/apache/spark/pull/6233
> SQLContext.range()
> ------------------
>
> Key: SPARK-7150
> URL: https://issues.apache.org/jira/browse/SPARK-7150
> Project: Spark
> Issue Type: Sub-task
> Components: ML, SQL
> Reporter: Joseph K. Bradley
> Assignee: Adrian Wang
> Priority: Minor
> Labels: starter
>
> It would be handy to have easy ways to construct random columns for
> DataFrames. Proposed API:
> {code}
> class SQLContext {
> // Return a DataFrame with a single column named "id" that has consecutive
> value from 0 to n.
> def range(n: Long): DataFrame
> def range(n: Long, numPartitions: Int): DataFrame
> }
> {code}
> Usage:
> {code}
> // uniform distribution
> ctx.range(1000).select(rand())
> // normal distribution
> ctx.range(1000).select(randn())
> {code}
> We should add an RangeIterator that supports long start/stop position, and
> then use it to create an RDD as the basis for this DataFrame.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]