У меня есть этот код
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'?
Спасибо!