Dataframe 0.13 Help

convertTo

Converts columns in DataFrame to match a given schema Schema.

convertTo<Schema>(excessiveColumns = ExcessiveColumns.Keep)

Customization DSL:

  • convert—how specific column types should be converted

  • parser—how to parse strings into custom types

  • fill—how to fill missing columns

class MyType(val value: Int) @DataSchema class MySchema(val a: MyType, val b: MyType, val c: Int)
val df = dataFrameOf("a", "b")(1, "2") df.convertTo<MySchema> { convert<Int>().with { MyType(it) } // converts `a` from Int to MyType parser { MyType(it.toInt()) } // converts `b` from String to MyType fill { c }.with { a.value + b.value } // computes missing column `c` }
Last modified: 19 March 2024