The "es-pe" locale has incorrect number format specification, it should use these values: ``` decimal: "." thousands: "," grouping: [3] currency: ["S/", ""] ``` But it uses the Spanish (es) number format with a dollar symbol ($) for currency. If I use this tickformat in Plotly R ``` yaxis = list(title = 'Monto (S/)', zerolinecolor = '#ffff', zerolinewidth = 2, gridcolor = 'ffff', tickformat = '$,.0f', hoverformat = '$,.0f'), ``` I get this which is incorrect 