<console>:50: error: No implicit view available from org.apache.spark.SparkContext => Unit.
new Spark(sparkContext)
^<console>:92: error: could not find implicit value for evidence parameter of type notebook.front.widgets.magic.Implicits.ToPoints[notebook.front.widgets.Sql]
Create the codec for the data
<console>:64: error: type mismatch;
found : play.api.libs.json.Format[Data]
required: Option[String => Data]
implicit val dataCodec:Codec[JsValue, Data] = formatToCodec(f)
^
Show the data in a table
<console>:62: error: not found: value dataCodec
new DataTable(data)(dataCodec).plotTo use implicit conversions and so on for a type defined within the notebook, you'll have to define all stuffs (related to these deinitions) into a single box → there are some problems with the compiler to resolve the right types in REPL mode.
<console>:17: error: type mismatch;
found : play.api.libs.json.OFormat[Person]
required: Option[String => Person]
implicit val dataCodec:Codec[JsValue, Person] = formatToCodec(format)
^<console>:17: error: type mismatch;
found : play.api.libs.json.OFormat[Person]
required: Option[String => Person]
implicit val dataCodec:Codec[JsValue, Person] = formatToCodec(format)
^--
You received this message because you are subscribed to the Google Groups "spark-notebook-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to spark-notebook-...@googlegroups.com.
To post to this group, send email to spark-not...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/spark-notebook-user/bbddd52e-1f16-4834-8b16-74ff5b3cfb0f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to spark-notebook-user+unsub...@googlegroups.com.
To post to this group, send email to spark-not...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/spark-notebook-user/bbddd52e-1f16-4834-8b16-74ff5b3cfb0f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--andy