I have a facet_wrap that looks good; however, I want to only have the external lines with actual numerical data and the internal graph lines with tick marks. I am not sure if there is a way top do thisthe first image is the desired plot edited in slides and the second is an R plot that needs to be changed.
My current code is
ggline(ACE2data2, x = "Time", y = "Fluorescence") +
labs(x = "Time (min)", y = "RFU Ex/Em 320/420nm") +
theme(axis.title.x = element_text(size = 22)) +
theme(axis.title.y = element_text(size = 22)) +
facet_wrap2(~ Dilution,
nrow = 5,
ncol = 4,
axes = "all") +
force_panelsizes(rows = unit(4, "cm"), cols = unit(4, "cm")) +
coord_cartesian(ylim = c(0, 10000)) +
theme(strip.text.x = element_blank(), strip.background = element_blank())
Any help is sincerely appreciated!! A big thanks in advance :)