How to reverse axis values when using plotly?

前端 未结 4 884
一个人的身影
一个人的身影 2021-01-17 16:25

Here is the program I used:

library(plotly)

mydata = read.csv(\"data_to_plot.txt\")
df = as.data.frame(mydata)

p <- df %>%
  group_by(X) %>%
  plo         


        
4条回答
  •  渐次进展
    2021-01-17 17:02

    At the moment reversed axis range in 3d is not supported in plotly. For this reason autorange = "reversed" doesn't work.

提交回复
热议问题