scatterD3
scatterD3 copied to clipboard
R scatter plot htmlwidget based on D3.js
**Is there any way to freeze the zoom level when adding/removing points to/from the scatter?** Right now, the zoom level is reset every time such an action is performed. In...
There is a very interesting project in development https://github.com/pbeshai/d3-scale-interactive that I think would play very nicely with `scatterD3`. If interested, let me know, and I can try to integrate.
Is it possible to use crosstalk with scatterD3 in a standalone R Markdown HTML Report? Running the following code works fine as expected: library(scatterD3) scatterD3::scatterD3(data=iris, x=Sepal.Width, y=Sepal.Length, col_var=Species) Trying to...