Sensei i fix, that
from bokeh.models import HoverTool
from bokeh.plotting import figure,show
from bokeh.io import save, output_file, show
output_file("soccer.html", title="socceer")
TOOLTIPS = HoverTool(tooltips=[
("index", "$index"),
("(Wage,Value)", "(@wage, @value)"),
("Name", "@name")]
)
p = figure(title="Soccer 2019", x_axis_label='Wage', y_axis_label='Value', width=700, height=700, tools=[TOOLTIPS])
p.circle("Wage", "Value", size=7, source=df1)
show(p)