Sho Nakamura

Results 20 comments of Sho Nakamura

@awambua Oh, for convenience, this library depends on numpy as well. You can install numpy in your python. I'll update the README. Thanks.

Hi @thetestid Do you have Python runtime on your Android environment? `matplotlib4j` fully depends on `matplotlib` Python library, so it is required. I have not tried to run matplotlib4j on...

@AirJunda Sorry for replying late. Do you still have the problem? When you see `PythonExecutionException` with a very simple case such as the demo, the most suspicious cause is that...

@vinayd001 Thanks for trying to contribute! Clone the code base, then run `./gradlew build` to install the dependency libraries. You can write the code with vim, vscode, IntelliJ IDEA or...

@fuwei199006 Thanks for the feedback. Could you also point out which method call on java raised the exception?

@fuwei199006 Sorry for replying so late. I have finally tried to test on Mac with Apple Silicon. But if numpy is correctly installed with python 3.9, I haven't seen that...

@awambua You can change this log level to INFO to eliminate DEBUG level logs. https://github.com/sh0nk/matplotlib4j/blob/master/src/main/resources/log4j.properties#L3

Hi @linjiaqin . It's not on README, but direct path to python binary is supported as below on Plot instance creation. Please refer to the code [here](https://github.com/sh0nk/matplotlib4j/blob/master/src/main/java/com/github/sh0nk/matplotlib4j/PythonConfig.java#L26). ```python Plot plt...

@Leader-board Thanks for your suggestion! Added here. https://github.com/sh0nk/matplotlib4j#other-way-to-specify-your-python-environment

@wcneill I believe that you are looking for is `pcolor` interface. [`PColorBuilder`](https://github.com/sh0nk/matplotlib4j/blob/master/src/main/java/com/github/sh0nk/matplotlib4j/builder/PColorBuilder.java) Usage example: https://github.com/sh0nk/matplotlib4j/blob/master/src/test/java/com/github/sh0nk/matplotlib4j/MainTest.java#L111-L125 Example of drawings is on the official document of matplotlib: https://matplotlib.org/stable/gallery/images_contours_and_fields/pcolor_demo.html