Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MINOR][DOCS][PYTHON] Adding missing boolean type for replacement val…
…ue in fillna ## What changes were proposed in this pull request? Currently pyspark Dataframe.fillna API supports boolean type when we pass dict, but it is missing in documentation. ## How was this patch tested? >>> spark.createDataFrame([Row(a=True),Row(a=None)]).fillna({"a" : True}).show() +----+ | a| +----+ |true| |true| +----+ Please review http://spark.apache.org/contributing.html before opening a pull request. Author: Srinivasa Reddy Vundela <[email protected]> Closes #17688 from vundela/fillna_doc_fix.
- Loading branch information