My goal is to plot 9 names on my y axis (the letter "a" to "i" by one letter after another).
However only every second letter is being plotted using the function scatterplot3d in the program R. Do you know how I could solve this problem?
Sincerely
plot_how <- scatterplot3d(Test.df,
color = "pink",
main="test experiment",
xlab = "time",
ylab = "samples ",
zlab = "output", type = "l", box = F,
ylim = c(1,9),
zlim = c(0, 3000),
grid = F,
yaxt = "n",
scale.y = 1,
label.tick.marks = T,
y.ticklabs = c("a", "b", "c", "d", "e", "f", "g", "h", "i"))