Kenta Murata

Results 82 issues of Kenta Murata

rbplotly cannot render charts on JupyterLab even if jupyterlab/plotly-extension is installed. The following message has been displayed on console: ``` [E 15:52:34.774 LabApp] Notebook JSON is invalid: Additional properties are...

bug
help wanted

The developers who want to run all spec files, they need to define `PLOTLY_USERNAME` and `PLOTLY_API_KEY` environment variables. But there is no information about hem in README.

In Python, we can check object identity by `x is y` expression. PyCall should provide a way to do it. ``` >> idx = Pandas::Index.new([*0...3]) >> idx => Int64Index([0, 1,...

enhancement

In Python, we can delete object's attribute by `del` statement: ```python del obj.attr ``` PyCall should support such a feature. I'd like to support this by adding `PyObjectWrapper#__del__` method.

enhancement

We can remove the last empty Hash in the following case in Ruby 2.7 because we can distinguish arguments of Hash and keyword arguments in Ruby 2.7. ``` >> s4...

enhancement

I want to completely migrate CI jobs onto GitHub Actions.

I want to write the following Python code ```python for item in collection: ... ``` like the following in Ruby with PyCall: ```ruby collection.each do |item| ... end ``` Now...

enhancement