Skip to content

Instantly share code, notes, and snippets.

@YordanGeorgiev
Created November 16, 2018 13:12
Show Gist options
  • Save YordanGeorgiev/b5eec0e05abb8ada0a0fa15cc6b09cb9 to your computer and use it in GitHub Desktop.
Save YordanGeorgiev/b5eec0e05abb8ada0a0fa15cc6b09cb9 to your computer and use it in GitHub Desktop.
[how-to-create-df-schema] how-to create datagrame schema #dataframe #schema #StructField #StructType
val structType= {
val id = StructField("id", IntegerType)
val name = StructField("name", StringType)
val age = StructField("age", IntegerType)
new StructType(Array(id, name , age))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment