0
我有RDD如下,拼接元素
>>> rdd.collect()
[([u'steve'], [u'new', u'york'], [u'baseball']), ([u'smith'], [u'virginia'], [u'football'])]
我怎樣才能獲得新的RDD爲,
[([u'steve'], [u'newyork'], [u'baseball']), ([u'smith'], [u'virginia'], [u'football'])]
我想它映射到新RDD與加入,但它不列入工作