geom_point (points) and geom_line (lines) are not paired in position in ggplot2 when using position_dodge
Here is my code:
ggplot(data = datae.19.26, aes(x=as.factor(assay.tem), y=change.fitness ))+
geom_point(aes(group= as.factor(evolution.tem)), position = position_dodge(width = 0.3))+
xlab(expression(paste("Assasy environment"))) +
ylab(expression(paste("Change in fitness"))) +
labs(shape=expression("Evolution\nenvironment", degree~"C"))+
geom_line(aes(linetype=as.factor(evolution.tem),group= tag),position = position_dodge(width = 0.3))+
theme_classic()
)
Here is my data
tag = block + evolution.tem + group
my data (for test):
assay.tem <- c(19,19,19,19,19,19,19,19,26,26,26,26,26,26,26,26)
evolution.tem <- c(19,19,26,26,19,19,26,26,19,19,26,26,19,19,26,26)
tag <- c("A19a","A19b","A26a","A26b","B19a","B19b","B26a","B26b","A19a","A19b","A26a","A26b","B19a","B19b","B26a","B26b")
change.fitness <- c(0.148000525,0.422677262,0.360426885,0.336559874,0.611094594,0.515070536,0.173537012,0.325389861,0.441893408,0.689221781,0.573697751,0.564322921,0.709060167,0.911127005,0.613946604,0.572489802)
datae.test <- data.frame (assay.tem,evolution.tem,tag,change.fitness)
I guess the default norm for points' position_dodge is 'as.factor(evolution.tem)', while for lines' is 'tag', but how can i solve this problem?
(note that the group for line and point are not same! so different from using position_dodge with geom_line)
Try this:
We do not need
position_dodge
:Basically: this is the answer:
A basic approach that can be extended: As you do not provide all the the data I filtered the relevant pairs:
data: