<!--
{
  "availability" : [
    "iOS: 15.0.0 -",
    "iPadOS: 15.0.0 -",
    "macCatalyst: 15.0.0 -",
    "macOS: 10.14.0 -",
    "tvOS: 16.0.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "CreateML",
  "identifier" : "/documentation/CreateML/MLDataColumn/init(column:)-2rxtu",
  "metadataVersion" : "0.1.0",
  "role" : "Initializer",
  "symbol" : {
    "kind" : "Initializer",
    "modules" : [
      "Create ML",
      "CreateML"
    ],
    "preciseIdentifier" : "s:8CreateML12MLDataColumnVAASaySiGRszrlE6columnACyADGACyqd__G_tcAA0C16ValueConvertibleRd__lufc"
  },
  "title" : "init(column:)"
}
-->

# init(column:)

Creates a new column of arrays of integers from a given column whose elements can be converted to an array of
integers.

```
init<T>(column: MLDataColumn<T>) where T : MLDataValueConvertible
```

## Parameters

`column`

An [`MLDataColumn`](/documentation/CreateML/MLDataColumn) of elements convertible to an
<doc://com.apple.documentation/documentation/Swift/Array> of
<doc://com.apple.documentation/documentation/Swift/Int>.

## Discussion

Use this initializer to create a column of arrays of integers from another column. Start by creating a column
that is convertible to a column of arrays of integers.

Then use [`init(column:)`](/documentation/CreateML/MLDataColumn/init(column:)-2rxtu) to convert the column to a column of arrays of integers.

```swift
let intsColumn = MLDataColumn<Int>(column: stringsColumn)
print(intsColumn) // Prints [1, 2, 3, 4, 5]
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)