{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import com.twosigma.beaker.widgets.integers.IntSlider\n", "\n", "w = new IntSlider()\n", "w.value = 60\n", "w" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "60" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.value" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "76" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.value =76" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "desc1" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.description = \"desc1\"" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "false" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.disabled = false\n", "//w.disabled = trw.tooltip = \"ToggleButton tooltip 2\"ue" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "50" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.max = 200\n", "w.min = 50" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "horizontal" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.orientation = \"horizontal\"\n", "//w.orientation = \"vertical\"" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "#087636" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.slider_color = \"#087636\"" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "20" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.step = 20" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "true" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "w.visible = true\n", "//w.visible = false" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.integers.IntProgress\n", "bar = new IntProgress()\n", "bar.value = 10\n", "bar" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "10" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "bar.value" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "110" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "bar.value =110" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "50" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "bar.max = 300\n", "bar.min = 50" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "20" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "bar.step = 20" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "horizontal" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "bar.orientation = \"horizontal\"\n", "//bar.orientation = \"vertical\"" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.selections.RadioButtons\n", "rb = new RadioButtons()\n", "rb.options=['1', '2', '3', '4', '5']\n", "rb.value = \"4\"\n", "rb" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "4" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "rb.value" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "rb.value =\"1\"" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.selections.Select\n", "select = new Select()\n", "select.options=['Linux', 'Windows', 'OSX']\n", "select.value = \"Windows\"\n", "select" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Windows" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "select.value" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Linux" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "select.value = \"Linux\"" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.bools.Checkbox\n", "cb = new Checkbox()\n", "cb" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "false" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cb.value" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "true" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cb.value = true" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.ColorPicker\n", "cp = new ColorPicker()\n", "cp.value = \"blue\"\n", "cp" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "blue" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cp.value" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "red" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cp.value =\"red\"" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "false" ] }, "execution_count": 30, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cp.concise = false\n", "//cp.concise = true" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.strings.Text\n", "t = new Text()\n", "t.value = \"Text example 1\"\n", "t" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Text example 1" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "t.value" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Text example 2" ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "t.value =\"Text example 2\"" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.strings.Textarea\n", "ta = new Textarea()\n", "ta.value = \"Textarea example 1\"\n", "ta" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Textarea example 1" ] }, "execution_count": 35, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ta.value" ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Textarea example 2" ] }, "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ta.value =\"Textarea example 2\"" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import com.twosigma.beaker.widgets.bools.ToggleButton\n", "tb = new ToggleButton()\n", "tb.tooltip = \"ToggleButton tooltip 1\"\n", "tb.button_style = 'success'\n", "tb.icon='check'\n", "tb.description='Click me'\n", "tb" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "false" ] }, "execution_count": 38, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tb.value" ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "true" ] }, "execution_count": 39, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tb.value = true\n", "//tb.value = false" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "ToggleButton tooltip 2" ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tb.tooltip = \"ToggleButton tooltip 2\"" ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.floats.FloatSlider\n", "fs = new FloatSlider()\n", "fs.value = 10.1\n", "fs" ] }, { "cell_type": "code", "execution_count": 42, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0.0" ] }, "execution_count": 42, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fs.value" ] }, { "cell_type": "code", "execution_count": 43, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "22.2" ] }, "execution_count": 43, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fs.value = 22.2" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.floats.FloatProgress\n", "floatProgress = new FloatProgress()\n", "floatProgress.value = 10.2\n", "floatProgress" ] }, { "cell_type": "code", "execution_count": 45, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0.0" ] }, "execution_count": 45, "metadata": {}, "output_type": "execute_result" } ], "source": [ "floatProgress.value" ] }, { "cell_type": "code", "execution_count": 46, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "33.3" ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "floatProgress.value = 33.3" ] }, { "cell_type": "code", "execution_count": 47, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 47, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.strings.Label\n", "label = new Label()\n", "label.value = \"Label 1\"\n", "label" ] }, { "cell_type": "code", "execution_count": 48, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Label 1" ] }, "execution_count": 48, "metadata": {}, "output_type": "execute_result" } ], "source": [ "label.value" ] }, { "cell_type": "code", "execution_count": 49, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Label 2" ] }, "execution_count": 49, "metadata": {}, "output_type": "execute_result" } ], "source": [ "label.value = \"Label 2\"" ] }, { "cell_type": "code", "execution_count": 50, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 50, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.strings.HTML\n", "label = new HTML()\n", "label.value = \"Hello World\"\n", "label" ] }, { "cell_type": "code", "execution_count": 51, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Hello World" ] }, "execution_count": 51, "metadata": {}, "output_type": "execute_result" } ], "source": [ "label.value = \"Hello World\"" ] }, { "cell_type": "code", "execution_count": 52, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 52, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.Image\n", "import java.nio.file.Files\n", "\n", "byte[] picture = Files.readAllBytes(new File(\"widgetArch.png\").toPath());\n", "\n", "image = new Image()\n", "image.format='png'\n", "image.value= picture\n", "image.width=300\n", "image.height=400\n", "image" ] }, { "cell_type": "code", "execution_count": 53, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 53, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.DatePicker\n", "datePicker = new DatePicker()\n", "datePicker" ] }, { "cell_type": "code", "execution_count": 54, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{}" ] }, "execution_count": 54, "metadata": {}, "output_type": "execute_result" } ], "source": [ "datePicker.value" ] }, { "cell_type": "code", "execution_count": 55, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 55, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.integers.IntRangeSlider\n", "w = new IntRangeSlider()\n", "w.value = [10,40]\n", "w.orientation = \"horizontal\"\n", "//w.orientation = \"vertical\"\n", "w" ] }, { "cell_type": "code", "execution_count": 56, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.integers.BoundedIntText\n", "w = new BoundedIntText()\n", "w.min = 0\n", "w.max = 10\n", "w" ] }, { "cell_type": "code", "execution_count": 57, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 57, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.integers.IntText\n", "w = new IntText()\n", "w" ] }, { "cell_type": "code", "execution_count": 58, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 58, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.integers.IntText\n", "w = new IntText()\n", "w" ] }, { "cell_type": "code", "execution_count": 59, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 59, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.integers.Play\n", "w = new Play()\n", "w" ] }, { "cell_type": "code", "execution_count": 60, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 60, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.floats.FloatRangeSlider\n", "w = new FloatRangeSlider()\n", "w.value = [10,40]\n", "w.orientation = \"horizontal\"\n", "//w.orientation = \"vertical\"\n", "w" ] }, { "cell_type": "code", "execution_count": 61, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 61, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.floats.BoundedFloatText\n", "w = new BoundedFloatText()\n", "w.min = 0 \n", "w.max = 10\n", "w" ] }, { "cell_type": "code", "execution_count": 62, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 62, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.floats.FloatText\n", "w = new FloatText()\n", "w" ] }, { "cell_type": "code", "execution_count": 63, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 63, "metadata": {}, "output_type": "execute_result" } ], "source": [ "//Example with passing different type to value\n", "\n", "import com.twosigma.beaker.widgets.integers.IntRangeSlider\n", "w = new IntRangeSlider()\n", "w.value = [\"10\",[49.6]]\n", "w.orientation = \"horizontal\"\n", "//w.orientation = \"vertical\"\n", "w" ] }, { "cell_type": "code", "execution_count": 64, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 64, "metadata": {}, "output_type": "execute_result" } ], "source": [ "//Example with passing different type to value\n", "\n", "import com.twosigma.beaker.widgets.integers.IntRangeSlider\n", "import java.util.Collection\n", "\n", "Collection list = new ArrayList<>()\n", "list.add([\"19\"])\n", "list.add(\"53\")\n", "\n", "w = new IntRangeSlider()\n", "w.value = list\n", "w.orientation = \"horizontal\"\n", "//w.orientation = \"vertical\"\n", "w" ] }, { "cell_type": "code", "execution_count": 65, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 65, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.bools.Valid\n", "\n", "w = new Valid()\n", "w.description = 'Valid!'\n", "w.value = true\n", "w.disabled = false\n", "w" ] }, { "cell_type": "code", "execution_count": 66, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 66, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import com.twosigma.beaker.widgets.selectioncontainer.Accordion\n", "import com.twosigma.beaker.widgets.bools.Valid\n", "import com.twosigma.beaker.widgets.floats.BoundedFloatText\n", "import com.twosigma.beaker.widgets.strings.Text\n", "\n", "t = new Text()\n", "t.value = \"Text example 1\"\n", "\n", "valid = new Valid()\n", "valid.description = 'Valid!'\n", "valid.value = true\n", "valid.disabled = false\n", "\n", "accordion = new Accordion([t , valid], ['t' , 'valid']);\n", "//accordion.set_title(0, 'Text')\n", "//accordion.set_title(1, 'Valid')\n", "accordion" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import com.twosigma.beaker.widgets.strings.Label\n", "widget = new Label()\n", "widget.value = \"\\$\\$\\\\frac{n!}{k!(n-k)!} = \\\\binom{n}{k}\\$\\$\"\n", "widget\n" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import com.twosigma.beaker.widgets.selections.SelectionSlider\n", "widget = new SelectionSlider()\n", "widget.options=['scrambled', 'sunny side up', 'poached', 'over easy']\n", "widget.value='sunny side up'\n", "widget.description='I like my eggs ...'\n", "widget.orientation='horizontal'\n", "//widget.orientation='vertical'\n", "widget" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import com.twosigma.beaker.widgets.strings.HTMLMath\n", "widget = new HTMLMath()\n", "widget.value = \"\\$x^2\\$ and \\$\\$\\\\frac{x+1}{x-1}\\$\\$\"\n", "widget " ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Regular" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "widget.value" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import com.twosigma.beaker.widgets.selections.ToggleButtons\n", "widget = new ToggleButtons()\n", "widget.description='Speed:'\n", "widget.options=['Slow', 'Regular', 'Fast']\n", "widget.button_style = 'success'\n", "widget.tooltips=['SL', 'RE', 'Fast']\n", "widget.icons=['check', 'check', 'check']\n", "widget" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "import com.twosigma.beaker.widgets.integers.Play\n", "import com.twosigma.beaker.widgets.integers.IntSlider\n", "import com.twosigma.beaker.widgets.box.HBox\n", "import com.twosigma.beaker.widgets.link.Link\n", "import com.twosigma.beaker.widgets.link.DirectionalLink\n", "import static com.twosigma.beaker.widgets.link.Link.jslink\n", "import static com.twosigma.beaker.widgets.link.DirectionalLink.jsdlink\n", "\n", "slider = new IntSlider()\n", "play= new Play()\n", "play.value=50\n", "play.min=0\n", "play.max=100\n", "//link = new Link(play, \"value\", slider, \"value\")\n", "link = jslink(play, \"value\", slider, \"value\")\n", "//link = new DirectionalLink(play, \"value\", slider, \"value\")\n", "//link = jsdlink(play, \"value\", slider, \"value\")\n", "box = new HBox([play,slider])\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "anaconda-cloud": {}, "beakerx_kernel_parameters": { "classpath": [], "imports": [ "com.twosigma.beaker.easyform.EasyForm", "com.github.lwhite1.tablesaw.api.ml.regression.*", "static com.twosigma.beaker.mimetype.MIMEContainer.VimeoVideo", "static com.twosigma.beaker.mimetype.FileLinkContainer.FileLinks", "com.twosigma.beaker.chart.Color", "com.github.lwhite1.tablesaw.api.*", "static com.twosigma.beaker.mimetype.MIMEContainer.IFrame", "com.twosigma.beaker.NamespaceClient", "com.twosigma.beaker.jvm.object.OutputCell", "com.github.lwhite1.tablesaw.filtering.*", "static com.twosigma.beaker.mimetype.MIMEContainer.HTML", "static com.twosigma.beaker.mimetype.MIMEContainer.Javascript", "static com.twosigma.beaker.mimetype.FileLinkContainer.FileLink", "static com.twosigma.beaker.mimetype.MIMEContainer.ScribdDocument", "static com.twosigma.beaker.mimetype.SVGContainer.SVG", "com.twosigma.beaker.mimetype.MIMEContainer", "com.twosigma.beaker.chart.histogram.*", "static com.github.lwhite1.tablesaw.api.QueryHelper.*", "com.twosigma.beaker.chart.heatmap.HeatMap", "com.twosigma.beaker.chart.xychart.*", "static com.twosigma.beaker.mimetype.ImageContainer.Image", "com.github.lwhite1.tablesaw.api.ml.clustering.*", "com.twosigma.beaker.chart.Filter", "static java.lang.Math.*", "static com.twosigma.beaker.mimetype.MIMEContainer.YoutubeVideo", "static com.twosigma.beaker.mimetype.MIMEContainer.Math", "com.twosigma.beaker.fileloader.CsvPlotReader", "static com.twosigma.beaker.mimetype.MIMEContainer.Markdown", "java.util.concurrent.TimeUnit", "com.twosigma.beaker.chart.categoryplot.plotitem.*", "static com.twosigma.beaker.mimetype.MIMEContainer.Video", "com.twosigma.beaker.chart.categoryplot.*", "static com.twosigma.beaker.mimetype.MIMEContainer.Latex", "com.twosigma.beaker.chart.xychart.plotitem.*", "com.twosigma.beaker.table.*", "com.twosigma.beaker.chart.KeyboardCodes", "com.twosigma.beaker.chart.GradientColor", "com.github.lwhite1.tablesaw.columns.*", "com.twosigma.beaker.chart.legend.*", "com.github.lwhite1.tablesaw.reducing.*" ] }, "kernelspec": { "display_name": "Groovy", "language": "groovy", "name": "groovy" }, "language_info": { "codemirror_mode": "groovy", "file_extension": ".groovy", "mimetype": "", "name": "Groovy", "nbconverter_exporter": "", "version": "2.4.3" }, "widgets": { "state": { "f6132997-5d22-4fbe-b4f9-16d41cb4e58b": { "views": [ { "cell_index": 0 } ] } }, "version": "1.2.0" } }, "nbformat": 4, "nbformat_minor": 1 }