pyspark.pandas.Series.mask

係列。 麵具 ( 氣孔導度:pyspark.pandas.series.Series,其他:任何= )→pyspark.pandas.series.Series

更換條件為真值。

參數
氣孔導度 布爾係列

電導率是假的,保持原始值。真的,從其他替換為相應的價值。

其他 標量,係列

條目,電導率是真的從其他替換為相應的價值。

返回
係列

例子

> > >pyspark.pandas.config進口set_option,reset_option> > >set_option(“compute.ops_on_diff_frames”,真正的)> > >s1=ps係列([0,1,2,3,4])> > >s2=ps係列([One hundred.,200年,300年,400年,500年])> > >s1麵具(s1>0)sort_index()0 0.01南2南3南4南dtype: float64
> > >s1麵具(s1>1,10)sort_index()0 012 103 104 10dtype: int64
> > >s1麵具(s1>1,s1+One hundred.)sort_index()0 012 102年3 103104年4dtype: int64
> > >s1麵具(s1>1,s2)sort_index()0 012 300年3 400500年4dtype: int64
> > >reset_option(“compute.ops_on_diff_frames”)