---
title: ">=(_:_:)"
framework: createml
role: symbol
role_heading: Operator
path: "createml/mldatacolumn/_=(_:_:)-1ctuz"
---

# >=(_:_:)

Creates a column of Booleans by testing whether each element in the given column is greater than or equal to the given value.

## Declaration

```swift
static func >= (a: MLDataColumn<Element>, b: Element) -> MLDataColumn<Bool>
```

## Parameters

- `a`: A column.
- `b`: A value of the same type as the elements of the column.

## Return Value

Return Value A new column of Booleans.

## See Also

### Comparing a column with a value to generate a column of booleans

- [==(_:_:)](createml/mldatacolumn/==(_:_:)-7clbs.md)
- [!=(_:_:)](createml/mldatacolumn/!=(_:_:)-4jp0y.md)
- [<(_:_:)](createml/mldatacolumn/_(_:_:)-4ujss.md)
- [<=(_:_:)](createml/mldatacolumn/_=(_:_:)-86x3a.md)
- [>(_:_:)](createml/mldatacolumn/_(_:_:)-ebgq.md)
