Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-37188][PYTHON] Respect user input layout kwargs in plot.hist
### What changes were proposed in this pull request? ``` s = ps.Series([1, 3, 2]) plt = s.plot.hist(title="Title") ``` Before this patch: ![image](https://user-images.githubusercontent.com/1736354/150648238-0fc08e19-f4e3-43dc-9378-fe5810bc4df3.png) After this patch (with title): ![image](https://user-images.githubusercontent.com/1736354/150648232-39daf7a6-1527-4cb0-ae45-ec7fd6704a1f.png) ### Why are the changes needed? pyspark.pandas histogram accepts the title option but does not add a title to the plot ### Does this PR introduce _any_ user-facing change? Yes ### How was this patch tested? - UT passed - Manual test Closes apache#35282 from Yikun/SPARK-37188-hist. Authored-by: Yikun Jiang <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
- Loading branch information