I am trying to plot a map with a number (wind velocity) instead of a symbol in each point with data,
something like

which I produced with a GIS app
The thing is I have the plotted numbers in an sf object, this way

the numbers are in the variable called Rmax
I have tried with
plot(points['Rmax'])
But obviously it does nor work, it just plot symbols, no the numbers
Any idea?
thanks a lot in advance, Ramón
There are a lot of ways to achieve this.
If you want to do this in base R you can use plot and text like so:
However, if you want an interactive scrollable map you can use the leaflet library for example like so:
use
?addCircleMarkersand?labelOptionsto check out the documentation on how to style your labels.