我有这样的代码
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"))
})
结果是这样
如何做我把'...'在'y'的数千值?
谢谢!我有这个代码output$result。
您可以设置 layout.yaxis.tickformat=",d"
和 layout.separators=",."
.