【发布时间】:2017-05-14 13:41:01
【问题描述】:
我有一个包含以下内容的数据框:
movieId / movieName / genre
1 example1 action|thriller|romance
2 example2 fantastic|action
我想获得第二个数据帧(来自第一个),其中包含以下内容:
movieId / movieName / genre
1 example1 action
1 example1 thriller
1 example1 romance
2 example2 fantastic
2 example2 action
我该怎么做?
【问题讨论】:
标签: apache-spark apache-spark-sql