DataFrame.Or 方法

定义

重载

Or(IReadOnlyList<Boolean>, Boolean)
Or(Boolean, Boolean)

对每列执行元素的布尔值 Or

Or(IReadOnlyList<Boolean>, Boolean)

Source:
DataFrame.BinaryOperations.cs
Source:
DataFrame.BinaryOperations.cs
Source:
DataFrame.BinaryOperations.cs
public Microsoft.Data.Analysis.DataFrame Or(System.Collections.Generic.IReadOnlyList<bool> values, bool inPlace = false);
member this.Or : System.Collections.Generic.IReadOnlyList<bool> * bool -> Microsoft.Data.Analysis.DataFrame
Public Function Or (values As IReadOnlyList(Of Boolean), Optional inPlace As Boolean = false) As DataFrame

参数

inPlace
Boolean

返回

适用于

Or(Boolean, Boolean)

Source:
DataFrame.BinaryOperations.cs
Source:
DataFrame.BinaryOperations.cs
Source:
DataFrame.BinaryOperations.cs

对每列执行元素的布尔值 Or

public Microsoft.Data.Analysis.DataFrame Or(bool value, bool inPlace = false);
member this.Or : bool * bool -> Microsoft.Data.Analysis.DataFrame
Public Function Or (value As Boolean, Optional inPlace As Boolean = false) As DataFrame

参数

value
Boolean
inPlace
Boolean

返回

适用于