平行坐标中的对数刻度

时间:2018-10-20 18:43:53

标签: r plotly parallel-coordinates

有没有办法表明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'))
               )
             )

0 个答案:

没有答案