Can Python, either using matplotlib or seaborn, draw markers with 3D effect?
Or any other software can do this? (like ggplot in R or origin etc.)
To explain my points, the following graphs are examples:
The pink/red/black dots have a 3D effect.
Thank you!
Here is an example using ggplot2
in R.
Hope it can help you.
library("ggplot2")
library("ggimage")
set.seed(1)
d <- data.frame(x = rnorm(10), y = rnorm(10),
image = rep("https://cdn.pixabay.com/photo/2015/11/26/19/19/ball-1064402_960_720.png",10))
ggplot(d, aes(x, y)) +
geom_line(lwd=3, color="#FF000044") +
geom_image(aes(image=image), size=.05) +
theme_bw()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With