Re: How can I join two DataSet of same case class?

2016-03-11 Thread Jacek Laskowski
Double, sigma: Double, avg: Double, > firstQuarter: Double, thirdQuarter: Double, median: Double) > > and my code is > a.joinWith(b, $"edid" === $"edid").show() > > If i use DataFrame, renaming a’s column could solve it. How can I join two > DataSet of same case class? >

Re: How can I join two DataSet of same case class?

2016-03-11 Thread Xinh Huynh
le, > firstQuarter: Double, thirdQuarter: Double, median: Double) > > and my code is > a.joinWith(b, $"edid" === $"edid").show() > > If i use DataFrame, renaming a’s column could solve it. How can I join two > DataSet of same case class? >

How can I join two DataSet of same case class?

2016-03-10 Thread 박주형
vg: Double, numDistinctRows: Double, numRows: Double, min: Double, max: Double, sigma: Double, avg: Double, firstQuarter: Double, thirdQuarter: Double, median: Double) and my code is a.joinWith(b, $"edid" === $"edid").show() If i use DataFrame, renaming a’s column could solve i