+ theme_classic() #无网格背景 Error in discrete_scale(c("x", "xmin", "xmax", "xend"), "position_d", : unused arguments (linetype = "solid", color = "black") In addition: Warning message: In geom_boxplot(wide = 0.2) :
时间: 2023-07-19 17:58:35 浏览: 120
DCT.rar_c语言移植代码_dct_dct in c
看起来你使用的是 ggplot2 绘图包,但是在调用 theme_classic() 函数时出现了问题。错误提示说 "linetype" 和 "color" 参数没有被使用,而警告消息则提示在使用 geom_boxplot() 函数时出现了问题。这可能是由于你在调用 ggplot() 或 geom_boxplot() 函数时没有正确设置参数导致的。
建议你检查一下你的代码,特别是 ggplot() 和 geom_boxplot() 函数的参数设置是否正确,以及是否与其他函数产生了冲突。你也可以尝试在搜索引擎上搜索类似的错误信息,看看有没有其他人遇到过相似的问题并有解决方法。
阅读全文