The following R code creates a line plot with markers. I wish to create a plot such that when hover is performed on the marker, it gives the "digits" and "sepw" values in the tooltip. Also the marker should be bold. Please help.
digits = 1:150
sep = iris$Sepal.Length
sepw = iris$Sepal.Width
plot_f1 <- ggplot(iris, aes(x = digits)) +
geom_line(aes(y = sep, color = "red", label = sepw )) + geom_point(y = sep)
plot_f1 = ggplotly(plot_f1)
plot_f1