January 2018
Intermediate to advanced
470 pages
11h 9m
English
We load and get the transaction. Then we get the distribution:
val inputCSV = "data/creditcard.csv"val transactions = spark.read.format("com.databricks.spark.csv") .option("header", "true") .option("inferSchema", true) .load(inputCSV)
Read now
Unlock full access