diff --git a/spam/01_spam_tutorial.ipynb b/spam/01_spam_tutorial.ipynb index b1c5ff1..fd14b80 100644 --- a/spam/01_spam_tutorial.ipynb +++ b/spam/01_spam_tutorial.ipynb @@ -109,7 +109,7 @@ "We load the YouTube comments dataset and create Pandas DataFrame objects for the train and test sets.\n", "DataFrames are extremely popular in Python data analysis workloads, and Snorkel provides native support\n", "for several DataFrame-like data structures, including Pandas, Dask, and PySpark.\n", - "For more information on working with Pandas DataFrames, see the [Pandas DataFrame guide](https://pandas.pydata.org/pandas-docs/stable/getting_started/dsintro.html).\n", + "For more information on working with Pandas DataFrames, see the [Pandas DataFrame guide](https://pandas.pydata.org/pandas-docs/stable/user_guide/dsintro.html).\n", "\n", "Each DataFrame consists of the following fields:\n", "* **`author`**: Username of the comment author\n", diff --git a/spam/01_spam_tutorial.py b/spam/01_spam_tutorial.py index c0daa61..e9928d5 100644 --- a/spam/01_spam_tutorial.py +++ b/spam/01_spam_tutorial.py @@ -81,7 +81,7 @@ # We load the YouTube comments dataset and create Pandas DataFrame objects for the train and test sets. # DataFrames are extremely popular in Python data analysis workloads, and Snorkel provides native support # for several DataFrame-like data structures, including Pandas, Dask, and PySpark. -# For more information on working with Pandas DataFrames, see the [Pandas DataFrame guide](https://pandas.pydata.org/pandas-docs/stable/getting_started/dsintro.html). +# For more information on working with Pandas DataFrames, see the [Pandas DataFrame guide](https://pandas.pydata.org/pandas-docs/stable/user_guide/dsintro.html). # # Each DataFrame consists of the following fields: # * **`author`**: Username of the comment author