I want to run a quantile regression in R which includes a three-way-interaction-term with three categorical predictors at the median (tau = 0.5). To interpret the effect, I want to create a plot. For linear models I use the function effect() from the package "effects". Unfortunately, this does not work with rq() from the package "quantreg". Do you have any suggestions on how to display an interaction effect?
library(quantreg)
data(mtcars)
summary(rq(formula = mpg ~ vs * am * carb, tau = 0.5, data = mtcars))