jonathanindig

Results 46 issues of jonathanindig

According to https://vega.github.io/vega-lite/docs/field.html: > Valid JavaScript object access paths using either dot (e.g., `foo.bar`) or bracket with quotes (e.g., `foo['bar']`) notations can be used in field to perform nested object...

bug
ui
vega

It would be awesome if we could take an existing Vega cell and edit it with the plot editor.

ui
vega

Support for rendering cells side-by-side / horizontally. Useful for comparisons, plots, etc.

enhancement
ui

> Feature Request: a button to toggle line wrapping in the output panel. If you have a really long line in the output, scrolling horizontally is super painful. Current workaround...

enhancement
ui

The following code blocks forever: ```python from multiprocessing import Pool def square(x): print("square", x, "is", x*x) return x * x m = __import__("__main__") m.__dict__.update(globals()) pool = Pool(2) data = pool.map(square,...

bug
python

![image](https://user-images.githubusercontent.com/5430417/173150803-6b03b671-fce0-4cc4-93d2-48f6c0c23038.png) Pickling functions fails with `PicklingError: Can't pickle : it's not the same object as __main__.foo`. This seems to be an issue with Jep SharedInterpreters. There's a workaround here https://github.com/ninia/jep/issues/327#issuecomment-854884229...

bug
python

![image](https://user-images.githubusercontent.com/5430417/173148333-9b162223-9f44-4dad-a4a3-66c999949e9a.png) We need to check the type of `name` in this list comprehension: https://github.com/polynote/polynote/blob/master/polynote-kernel/src/main/scala/polynote/kernel/interpreter/python/PythonInterpreter.scala#L443

bug
python

If you select "No Cache" on a `file:///` dependency, you'll get a `URI has a query component` error. Polynote should handle this better.

bug

Polynote currently ships any python dependency you add over to Spark executors. This doesn't work for some dependencies (those that are pure Python). Any dependencies that have some compiled code...

python
spark

Polynote cached URL dependencies locally, unless you add a [`?nocache` flag](https://github.com/polynote/polynote/pull/293) to the end of the URL. Turns out when using YARN, a dependency named `schema://path/to/my.jar?nocache` can cause problems with...

bug
spark