我正在尝试使用plot_model()
中的sjPlot
函数来创建预测值图。我希望我的预测线具有不同的线型和不同的颜色。
该函数包含一个colors
参数,并且将colors
设置为bw
会更改linetype
,但是将colors
设置为灰度。这个问题类似,但是没有得到有用的答案:Colored ribbons and different linetypes in sjPlot plot_model()
示例:
不同的linetypes
,而不是colors
data(iris)
toy_model <- lm( Sepal.Length ~ Sepal.Width + Species, data=iris)
my_plot <- plot_model(toy_model, type=("pred"),
terms=c("Sepal.Width","Species"),
colors="bw")
不同的colors
,而不是linetypes
data(iris)
toy_model <- lm( Sepal.Length ~ Sepal.Width + Species, data=iris)
my_plot <- plot_model(toy_model, type=("pred"),
terms=c("Sepal.Width","Species"))
如何获得不同的colors
和不同的linetypes
?换句话说,我想要这样的东西
答案 0 :(得分:2)
sjPlot
在定制方面似乎比较僵化,但是有很多解决方法。您可以从ggpredict
(从ggeffects
包中获取数据),并像往常一样在ggplot
中自定义绘图。
df <- ggpredict(toy_model, terms = c("Sepal.Width","Species"))
ggplot(df, aes(x, predicted)) +
geom_line(aes(linetype=group, color=group)) +
geom_ribbon(aes(ymin=conf.low, ymax=conf.high, fill=group), alpha=0.15) +
scale_linetype_manual(values = c("solid", "dashed", "dotted"))
答案 1 :(得分:0)
plot_model
确实允许ggplot2
函数调整图的特征。
您可以轻松更改颜色或线型。
library(sjPlot)
library(ggplot2)
data(iris)
toy_model <- lm( Sepal.Length ~ Sepal.Width + Species, data=iris)
#Use aes to change color or linetype
plot_model(toy_model, type=("pred"),
terms=c("Sepal.Width","Species")) + aes(linetype=group, color=group)
#Change color
plot_model(toy_model, type=("pred"),
terms=c("Sepal.Width","Species"), colors = "Set2") + aes(linetype=group, color=group)