I'm aware of this question where dcarlsen helpfully explains how to rotate a 3dscatterplot around the z-axis in r. However, I would also like to rotate around the x axis. Code:
attach(dataset)
dateconverted <- as.Date(Date)
Status_converted <- as.factor(Vaccine_status)
age <- as.numeric(gsub("([0-9]+).*$", "\\1", Declared_age))
scatterplot3d(dateconverted[4500:5115], age[4500:5115], New_cases[4500:5115], color=c("red","blue","green")[Status_converted[4500:5115]], pch=19, angle=75)
It gives something along the lines of:
Obviously there's tons of work to be done on the graph but I'd like to rotate the front upwards (around the x-axis).
You can try other libraries that generate even more dynamic graphics, an example of which you can see here: