jiawen wang

Results 189 comments of jiawen wang
trafficstars

> > Is it better to plot "cell_boundaries" instead of "cell_circles" ? > > Yes, it is better to plot the `cell_boundaries` as `cell_circles` are approximations of the cells. Nevertheless,...

> Thanks for the details. > > * The performance problem of datashader is being addressed here: [speed up datashader by using canvas size equal to image size #309](https://github.com/scverse/spatialdata-plot/pull/309). Can...

Jupyter notebook is very popular in data science and data visualization, it's hard to abandon it for lots of users. Plotpy can get more attractive for people getting used to...

There are alread many Rust visualization crate yet (plotters, plotly.rs, chart-rs, charming and so on), but all of them are lack of maintenance. I don't think it's feasible to construct...

Evcxr is an evaluation context for Rust under active maintenance by [David Lattimore](https://github.com/davidlattimore), so don't worry about Evcxr. At present, it appears that the only thing need do is the...

It worked in my windows10 desktop and centos7 server.

Hi, there are several styles we can consider: * [Plotly.rs](https://plotly.github.io/plotly.rs/content/fundamentals/jupyter_support.html) uses the function `plot.lab_display()` and `Plot::notebook_display()` to show figures in Jupyter. * [Plotters](https://docs.rs/plotters/latest/plotters/evcxr/fn.evcxr_figure_with_saving.html) uses the function ` evcxr_figure()` to only...

I see it! I tested it and it worked. And here is a typo in line 1131 (src/plot.rs), `evcxr` should be `jupyter` now (and also in the readme). ![image](https://github.com/user-attachments/assets/637fdfa3-a62b-44e5-b7ef-ec30cf9e776c) readme:...

And `.save(path)?` in the code is not needed now. ``` // set the python path let python = "where-is-my/python"; // set the figure path and name to be saved let...