Skip to content

Commit b96afd5

Browse files
author
Mahmoud Hanafy
committed
Add simple test cases for JavaHappyPandas
1 parent a252514 commit b96afd5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/main/java/com/highperformancespark/examples/dataframe/JavaHappyPandas.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static DataFrame jsonLoadFromRDD(SQLContext sqlContext, JavaRDD<String> i
6262
*/
6363
public static DataFrame happyPandasPercentage(DataFrame pandaInfo) {
6464
DataFrame happyPercentage = pandaInfo.select(pandaInfo.col("place"),
65-
pandaInfo.col("happyPandas").divide(pandaInfo.col("totalPandas")).as("percentHappy"));
65+
(pandaInfo.col("happyPandas").divide(pandaInfo.col("totalPandas"))).as("percentHappy"));
6666
return happyPercentage;
6767
}
6868

@@ -204,7 +204,7 @@ public static void joins(DataFrame df1, DataFrame df2) {
204204
}
205205

206206
public static DataFrame selfJoin(DataFrame df) {
207-
return df.as("a").join(df.as("b")).where(df.col("name").equalTo(df.col("name")));
207+
return (df.as("a")).join(df.as("b")).where("a.name = b.name");
208208
}
209209

210210
}

src/test/scala/com/high-performance-spark-examples/dataframe/HappyPandasTest.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ class HappyPandasTest extends DataFrameSuiteBase {
5454
//tag::approxEqualDataFrames[]
5555

5656
test("verify simple happy pandas Percentage") {
57-
val expectedResult = List(Row(toronto, 0.5), Row(sandiego, 2/3.0), Row(virginia, 1/10.0))
58-
val expectedDf = createDF(expectedResult, ("place", StringType),
57+
val expectedList = List(Row(toronto, 0.5), Row(sandiego, 2/3.0), Row(virginia, 1/10.0))
58+
val expectedDf = createDF(expectedList, ("place", StringType),
5959
("percentHappy", DoubleType))
6060

6161
val inputDF = sqlContext.createDataFrame(pandaInfoList)
62-
val result = HappyPandas.happyPandasPercentage(inputDF)
62+
val resultDF = HappyPandas.happyPandasPercentage(inputDF)
6363

64-
assertDataFrameApproximateEquals(expectedDf, result, 1E-5)
64+
assertDataFrameApproximateEquals(expectedDf, resultDF, 1E-5)
6565
}
6666
//end::approxEqualDataFrames[]
6767

0 commit comments

Comments
 (0)