I'm trying to visualize some data with a seaborn plot and the csv file link keeps returning the error '"link.csv" is not one of the example datasets.' What am I doing wrong?
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
df = sns.load_dataset('https://github.com/avocami/Goodreads-project/blob/main/df_goodreads.csv')
sns.jointplot(x=df["avg_rating"], y=df["num_pages"], kind='hex', marginal_kws=dict(bins=30, fill=True))
plt.show()