作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经绘制了一个图形,该图形与我使用的脚本完美配合,y =吸光度,dose = x,不同曲线表示时间。当我想更改为time = x和代表剂量的曲线时,我得到了Error:Continuous值提供给离散刻度。
我的脚本中没有设置任何离散比例,如下所示:
pd <- position_dodge(0.1)
ggplot(Cell_line_absorbance_summary, aes(x=Time, y=absorbance, colour=Dose, group=Dose)) +
geom_errorbar(aes(ymin=absorbance-se, ymax=absorbance+se), colour="black", width=.1, position=pd) +
geom_line(position=pd) +
geom_point(position=pd, size=3, shape=21, fill="white") + # 21 is filled circle
xlab("Time (h)") +
ylab("Absorbance") +
scale_colour_hue(name="X-ray exposure", # Legend label, use darker colors
breaks=c("0", "2", "4", "6", "8", "10"), #forlater when IC50 available labels=c("24h (IC50 = 13 nM)", "48h (IC50 = 3.3 nM)", "72h (IC50 = 2.5 nM)"),
l=40) +
ggtitle("HCC38") +
expand_limits(y=0) +
scale_y_continuous() +
scale_x_continuous(limits = c(0,400),breaks=0:400*24) +
theme_classic() +
theme(legend.justification=c(0,0),
legend.position=c(0,0)) +
scale_color_jco()
最佳答案
看来Dose
是连续的而不是离散的。如果将其更改为factor
,它应该可以正常运行。尝试:
Cell_line_absorbance_summary$Dose <- as.factor(Cell_line_absorbance_summary$Dose)
关于r - 错误: Continuous value supplied to discrete scale in ggplot2 while using scale_colour_hue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59274617/
我已经绘制了一个图形,该图形与我使用的脚本完美配合,y =吸光度,dose = x,不同曲线表示时间。当我想更改为time = x和代表剂量的曲线时,我得到了Error:Continuous值提供给离
我是一名优秀的程序员,十分优秀!