可以用python绘制带有3d效果的标记吗?

时间:2017-08-23 21:55:11

标签: python r matplotlib ggplot2 seaborn

使用matplotlib或seaborn,Python可以用3D效果绘制标记吗?

或者其他任何软件都可以做到这一点? (如R中的ggplot或原点等。)

为了解释我的观点,以下图表是示例: enter image description here

enter image description here

粉色/红色/黑色圆点具有3D效果。

谢谢!

1 个答案:

答案 0 :(得分:3)

以下是在R.中使用ggplot2的示例 希望它可以帮到你。

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()

enter image description here