Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions python/docs/pyspark.ml.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
pyspark.ml package
=====================

Submodules
----------

pyspark.ml module
-----------------
Module Context
--------------

.. automodule:: pyspark.ml
:members:
Expand Down
3 changes: 0 additions & 3 deletions python/docs/pyspark.mllib.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
pyspark.mllib package
=====================

Submodules
----------

pyspark.mllib.classification module
-----------------------------------

Expand Down
12 changes: 10 additions & 2 deletions python/docs/pyspark.sql.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
pyspark.sql module
==================

Module contents
---------------
Module Context
--------------

.. automodule:: pyspark.sql
:members:
:undoc-members:
:show-inheritance:


pyspark.sql.types module
------------------------
.. automodule:: pyspark.sql.types
:members:
:undoc-members:
:show-inheritance:
2 changes: 1 addition & 1 deletion python/pyspark/mllib/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

import numpy as np

from pyspark.sql import UserDefinedType, StructField, StructType, ArrayType, DoubleType, \
from pyspark.sql.types import UserDefinedType, StructField, StructType, ArrayType, DoubleType, \
IntegerType, ByteType


Expand Down
Loading