Sign in
apache
/
spark-website
/
asf-site
/
.
/
site
/
docs
/
4.1.0-preview1
/
api
/
python
/
reference
/
pyspark.pandas
/
api
/
pyspark-pandas-Series-plot-box-1.py
blob: 256458252c26a0f817ac73d5f3015f3d8c43b63b [
file
] [
log
] [
blame
]
data
=
np
.
random
.
randn
(
25
,
4
)
df
=
ps
.
DataFrame
(
data
,
columns
=
list
(
'ABCD'
))
df
[
'A'
].
plot
.
box
()
# doctest: +SKIP