gpt4 book ai didi

r - 带有彩色边框但没有填充的ggplot2

转载 作者:行者123 更新时间:2023-12-01 15:50:48 25 4
gpt4 key购买 nike

我正在尝试使用库 ggplot2 绘制点图。我的脚本为下面的示例数据生成了一个点图,但我需要为点边框着色,但点的其余部分应该是空的(无填充)。例如,如果我的点的颜色是红色、蓝色和绿色,我只想让点的边界是红色、蓝色和绿色,而点的其余部分应该是空的。

以下是我当前的脚本和示例数据

library(ggplot2)      
File2=read.table("PB12_combo.txt", header=T, sep="\t")
ggplot(File2, aes(x_axis, y_axis, colour=factor(z_axis)))+geom_point(size=5)

x_axis y_axis z_axis
605 250 2
690 394 2
762 109 2
543 495 2
388 538 2
758 736 2
197 409 2
390 106 3
390 343 4

最佳答案

将点的形状更改为 1

ggplot(File2, aes(x_axis, y_axis, colour=factor(z_axis)))+geom_point(size=5,shape=1)

关于r - 带有彩色边框但没有填充的ggplot2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18342577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com