gpt4 book ai didi

R ggplot2 : legend should be discrete and not continuous

转载 作者:行者123 更新时间:2023-12-03 23:30:03 24 4
gpt4 key购买 nike

我有以下数据:

benchmark   mispredpenal    IPC     pred
ammp 1 1.0589 2lev
ammp 5 1.0450 2lev
...

并使用以下命令:
ggplot(IPC, aes(x = benchmark, y = IPC, group=mispredpenal, colour=mispredpenal)) + 
geom_point() + geom_line()

一切看起来都应该如此,但我希望图例是离散的,而不是连续的(渐变)。我该怎么做?

编辑:
错误预测是 1、5、9、13 或 17。

最佳答案

你想要变量 mispredpenal成为 factor在这种情况下:

ggplot(IPC, aes(x = benchmark, y = IPC, group=factor(mispredpenal), colour=factor(mispredpenal))) + 
geom_point() + geom_line()

关于R ggplot2 : legend should be discrete and not continuous,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20301922/

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