Table of Contents
Reference
zeppelin-env.sh
Text input form
${formName}
${formName=defaultValue}
${name}
${name=Yeongho}
${formName=defaultValue,option1|option2...}
${formName=defaultValue,option1(DisplayName)|option2(DisplayName)...}
${fruit=apple,apple|banana|orange}
${fruit=apple,1(apple)|2(banana)|3(orange)}
println("Hello "+z.select("day", Seq(("1","mon"),
("2","tue"),
("3","wed"),
("4","thurs"),
("5","fri"),
("6","sat"),
("7","sun"))))
${checkbox:formName=defaultValue1|defaultValue2...,option1|option2...}
${checkbox(delimiter):formName=...}:
${checkbox:fruit=apple|banana,apple|banana|orange}
> apple,banana
${checkbox( and ):fruit=apple|banana,apple|banana|orange}
> apple and banana
${checkbox( and ):fruit=apple(사과),apple|banana|orange} # Label can also be placed
> apple and banana
Topics
Interpreter mode
Shared
mode shares both SparkContext
and Scala REPL
- In
Scoped
mode, each Note
has its own Scala REPL
.
- In
Isolated
mode, each Note
has its own SparkContext
and Scala REPL
.
How-to
Install Interpreters