Using this code, I generated the following graph:
g = sns.lmplot('credibility', 'percentWatched', data=data, hue = 'gender', markers = [".", "."], x_jitter = True, y_jitter = True, size=5, palette="Set2", scatter_kws={'alpha': 0.2})
g.set(xlabel = 'Credibility Ranking\n ← Low High →', ylabel = 'Percent of Video Watched [%]')
g.set(xlim=(1, 7))
new_title = 'Gender'
g._legend.set_title(new_title)
# replace labels
new_labels = ['Male', 'Female']
for t, l in zip(g._legend.texts, new_labels): t.set_text(l)
As you can see, the legend overlaps with the actual graph. How can I move over the legend more to the right so you can see the full legend?