I use scatterplot3d
to plot 3D with R. The orientation of the y-axis label bothers me because it is vertical and not parallel to the y-axis.
Is there a way to rotate the label and adjust its angle? Unfortunately, I didn't finde anything in the documentation.
相关问题
- R - Quantstart: Testing Strategy on Multiple Equit
- Is GLFW designed to use without LWJGL (in java)?
- Using predict with svyglm
- Reshape matrix by rows
- Extract P-Values from Dunnett Test into a Table by
相关文章
- How to convert summary output to a data frame?
- How to plot smoother curves in R
- Paste all possible diagonals of an n*n matrix or d
- ess-rdired: I get this error “no ESS process is as
- How to use doMC under Windows or alternative paral
- dyLimit for limited time in Dygraphs
- Saving state of Shiny app to be restored later
- Android Visualizer class throwing runtime exceptio
If you don't have to draw many plots and are willing to adjust values manually, you can pass
ylab = ""
when making the 3d scatter and then addtext
later on with appropriatesrt
value.srt
allows you to rotate text at desired angle. Note thatx
andy
when adding text is different fromx
andy
of 3d scatter.Using
scale.y