Hvplot has default the position of the legend on the right outside of the plot.
How can I change this default legend position?
import numpy as np
import pandas as pd
import hvplot
import hvplot.pandas
import holoviews as hv
data = np.random.normal(size=[50, 2])
df = pd.DataFrame(data, columns=['a', 'b'])
df.hvplot.line()