I have a data frame containing continuous variable x, a factor y and a continuous variable z
For illustration assume
x <- 1:5
y <- c("A", "B", "C", "D", "E")
z.a<-sort(sample(x=seq(0,1,0.1),size=5, replace=F))
z.b<-sort(sample(x=seq(0,1,0.1),size=5, replace=F))
z.c<-sort(sample(x=seq(0,1,0.1),size=5, replace=F))
z.d<-sort(sample(x=seq(0,1,0.1),size=5, replace=F))
z.e<-sort(sample(x=seq(0,1,0.1),size=5, replace=F))
Now i would like to construct the following plot
plot(x,y, yaxt="n", type="n",ylim=c(0,5),yaxs="i")
axis(2, at=seq(0.5,4.5,1), labels=c("A", "B", "C", "D", "E"))
abline(h=0:5)

Now for each level of the y (displayed at the y-axis) i would like the box to be filled with color according to the respective z value. For example the the A of the plot should be filled with z.a, the B with z.b
All z contain values of same scale (0,1) and the are always decreasing with decreasing x
Is there any package that performs these kinds of plots? If no how can I code it in base R?
I would prefer a base R solution but if it is not possible any other solution will do.
Alternatively, the plot could be regarded as a horizontal barplot for each level of the y, ranging for the whole range of x and its color would be attributed to z (at each x)

