Skip to content

Instantly share code, notes, and snippets.

@ozgurshn
Created January 6, 2019 16:01
Show Gist options
  • Save ozgurshn/3aeca1ed81fef56bcdf641ed07416811 to your computer and use it in GitHub Desktop.
Save ozgurshn/3aeca1ed81fef56bcdf641ed07416811 to your computer and use it in GitHub Desktop.
MLDataTable from dictionary
let data: [String: MLDataValueConvertible] = [
"Title": ["Alice in Wonderland", "Hamlet", "Treasure Island", "Peter Pan"],
"Author": ["Lewis Carroll", "William Shakespeare", "Robert L. Stevenson", "J. M. Barrie"],
"Pages": [124, 98, 280, 94],
]
var bookTable = try MLDataTable(dictionary: data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment