Question
How does a Spark Dataset differ from an untyped DataFrame in Scala?
Select an option. Your answer will be checked instantly.
Correct Answer: C. A Dataset can provide compile-time type information for its records
Explanation:
Typed Datasets use encoders and Scala types.
A DataFrame is conceptually a Dataset of generic Row objects.
Leave a Reply