Repository: spark
Updated Branches:
  refs/heads/branch-2.0 c212307b9 -> 0d16b7f3a


[MINOR][DOC] Fixed some python snippets in mllib data types documentation.

## What changes were proposed in this pull request?

Some python snippets is using scala imports and comments.

## How was this patch tested?

Generated the docs locally with `SKIP_API=1 jekyll build` and viewed the 
changes in the browser.

Author: Shuai Lin <linshuai2...@gmail.com>

Closes #12869 from lins05/fix-mllib-python-snippets.

(cherry picked from commit c4e0fde876fff259308d1d58ab51ae2697ae31f1)
Signed-off-by: Andrew Or <and...@databricks.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0d16b7f3
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0d16b7f3
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0d16b7f3

Branch: refs/heads/branch-2.0
Commit: 0d16b7f3a5fbb2eb047edca838bcbde9037227a3
Parents: c212307
Author: Shuai Lin <linshuai2...@gmail.com>
Authored: Tue May 3 18:02:12 2016 -0700
Committer: Andrew Or <and...@databricks.com>
Committed: Tue May 3 18:02:23 2016 -0700

----------------------------------------------------------------------
 docs/mllib-data-types.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/0d16b7f3/docs/mllib-data-types.md
----------------------------------------------------------------------
diff --git a/docs/mllib-data-types.md b/docs/mllib-data-types.md
index 5e3ee47..2ffe0f1 100644
--- a/docs/mllib-data-types.md
+++ b/docs/mllib-data-types.md
@@ -314,12 +314,12 @@ matrices. Remember, local matrices in MLlib are stored in 
column-major order.
 Refer to the [`Matrix` Python 
docs](api/python/pyspark.mllib.html#pyspark.mllib.linalg.Matrix) and 
[`Matrices` Python 
docs](api/python/pyspark.mllib.html#pyspark.mllib.linalg.Matrices) for more 
details on the API.
 
 {% highlight python %}
-import org.apache.spark.mllib.linalg.{Matrix, Matrices}
+from pyspark.mllib.linalg import Matrix, Matrices
 
-// Create a dense matrix ((1.0, 2.0), (3.0, 4.0), (5.0, 6.0))
+# Create a dense matrix ((1.0, 2.0), (3.0, 4.0), (5.0, 6.0))
 dm2 = Matrices.dense(3, 2, [1, 2, 3, 4, 5, 6])
 
-// Create a sparse matrix ((9.0, 0.0), (0.0, 8.0), (0.0, 6.0))
+# Create a sparse matrix ((9.0, 0.0), (0.0, 8.0), (0.0, 6.0))
 sm = Matrices.sparse(3, 2, [0, 1, 3], [0, 2, 1], [9, 6, 8])
 {% endhighlight %}
 </div>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to