story1, 10, small
story2, 20, medium
sotry3, 3, small
story4, 50, xlarge
データをデータセットに変換したい。列名は、storyType (小、中、大、特大) です。したがって、この状況でケースクラスを作成する方法がわかりません
case class Story(name:String, point: Int, storyType: ???)
story1, 10, small
story2, 20, medium
sotry3, 3, small
story4, 50, xlarge
データをデータセットに変換したい。列名は、storyType (小、中、大、特大) です。したがって、この状況でケースクラスを作成する方法がわかりません
case class Story(name:String, point: Int, storyType: ???)