Created
December 3, 2017 22:22
-
-
Save geoHeil/08d382fac091158af45ac756ed671846 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val friends: DataFrame = g.find("(a)-[e]->(b)") | |
friends.show | |
friends.groupBy('a).agg(mean($"b.fraud").as("fraud")) | |
.withColumn("id", $"a.id") | |
.withColumn("name", $"a.name") | |
.withColumn("fraud_src", $"a.fraud") | |
.drop("a") | |
.show |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment