Skip to content
Snippets Groups Projects
Commit d9819021 authored by Sean Owen's avatar Sean Owen
Browse files

[SPARK-11476][DOCS] Incorrect function referred to in MLib Random data generation documentation

Fix Python example to use normalRDD as advertised

Author: Sean Owen <sowen@cloudera.com>

Closes #9529 from srowen/SPARK-11476.
parent 4b69a42e
No related branches found
No related tags found
No related merge requests found
......@@ -594,7 +594,7 @@ sc = ... # SparkContext
# Generate a random double RDD that contains 1 million i.i.d. values drawn from the
# standard normal distribution `N(0, 1)`, evenly distributed in 10 partitions.
u = RandomRDDs.uniformRDD(sc, 1000000L, 10)
u = RandomRDDs.normalRDD(sc, 1000000L, 10)
# Apply a transform to get a random double RDD following `N(1, 4)`.
v = u.map(lambda x: 1.0 + 2.0 * x)
{% endhighlight %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment