有没有办法表明R Plotly中的某些平行坐标应该在对数刻度上?我已经尝试了以下方法,但是它似乎不起作用...
plot_ly(type = 'parcoords',
line = list(color = 'blue'),
dimensions = list(
list(range = c(1,5000),label = 'A', values = c(1,10,100,1000),axis = list(type = 'log')),
list(range = c(1,5000),label = 'B', values = c(1,10,100,1000),axis = list(type = 'log'))
)
)