pyspark.pandas.Series.where¶
-
係列。
在哪裏
( 氣孔導度: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南1 1.02 2.03 3.04 4.0dtype: float64
> > >s1。在哪裏(s1>1,10)。sort_index()0 101 102 - 23個34個4dtype: int64
> > >s1。在哪裏(s1>1,s1+One hundred.)。sort_index()100年01 1012 - 23個34個4dtype: int64
> > >s1。在哪裏(s1>1,s2)。sort_index()100年01 2002 - 23個34個4dtype: int64
> > >reset_option(“compute.ops_on_diff_frames”)