When running \"sbt package\" from the command line for a small Spark Scala application, I\'m getting the \"value $ is not a member of StringContext\" compilation error on the fo
Great answer guys, if resolving import is a concern, then will this work
import org.apache.spark.sql.{SparkSession, SQLContext} val ss = SparkSession.builder().appName("test").getOrCreate() val dataDf = ... import ss.sqlContext.implicits._ dataDf.filter(not($"column_name1" === "condition"))