标签: r ggplot2 shapes
有没有办法指定或定义要在ggplot2中使用的新/不同形状?
ggplot2
我正在考虑在R中创建或加载.png或其他文件格式,并将其用作shape参数的值。像这样的东西
my_shape = load("my little weird shape") ggplot(data = data, aes(x, y)) + geom_point(shape = my_shape, aes(color = variable))
我正在尝试生成图表,例如
通过绘制和填充小人体的形状。有什么想法吗?