如何使用plotly R将点千放在y轴上?

问题描述 投票:0回答:1

我有这样的代码

 output$result<-renderPlotly({
   dades_graf <- dades[which(dades$Plataforma==input$Plataforma & dades$Jugador==input$Jugador),]
   p <-plot_ly(data=dades_graf, x= dades_graf$Fecha, y= dades_graf$Valor, type = 'scatter', mode = 'lines+markers') %>% 

     layout(separators= ".",
         autosize = TRUE,
         title="Valor Jugadores", 
         xaxis=list(title="Fecha"),
         yaxis=list(title="Valor", tickformat= "d"))
          })

结果是这样

enter image description here

如何做我把'...'在'y'的数千值?

谢谢!我有这个代码output$result。

r plotly
1个回答
1
投票

您可以设置 layout.yaxis.tickformat=",d"layout.separators=",.".

© www.soinside.com 2019 - 2024. All rights reserved.