From 79edeb1e2b4231f2bf09c704303debc6aa517a65 Mon Sep 17 00:00:00 2001 From: aweldr <40437512+aweldr@users.noreply.github.com> Date: Sat, 10 Oct 2020 14:37:44 -0400 Subject: [PATCH 1/2] Update nflfastR_python_tutorial.ipynb fixed typo :) --- nflfastR_python_tutorial.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nflfastR_python_tutorial.ipynb b/nflfastR_python_tutorial.ipynb index aad0fe3..bd1db67 100644 --- a/nflfastR_python_tutorial.ipynb +++ b/nflfastR_python_tutorial.ipynb @@ -66,7 +66,7 @@ "#Part 1 - Importing Packages and Scraping the Data\n", "\n", "##Importing Packages\n", - "Since Google Colab hosts a cloud based run-time, we can start using python and its packages with no prior set up. However, in order to utilize these pacakges, they must be imported to our notebook document. The following four packages are an absolute must when working with data in python; no analysis can be done without them. \n", + "Since Google Colab hosts a cloud based run-time, we can start using python and its packages with no prior set up. However, in order to utilize these packages, they must be imported to our notebook document. The following four packages are an absolute must when working with data in python; no analysis can be done without them. \n", "\n", " - [\"pandas\"][pandas] This library provides easy-to-use data analysis and manipulation tools for python.\n", "\n", From 7cc689e5778d1b4f51c3dd51f11fb74f8bfb61da Mon Sep 17 00:00:00 2001 From: aweldr <40437512+aweldr@users.noreply.github.com> Date: Sat, 10 Oct 2020 14:54:29 -0400 Subject: [PATCH 2/2] Update nflfastR_python_tutorial.ipynb addressed a few additional typos --- nflfastR_python_tutorial.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nflfastR_python_tutorial.ipynb b/nflfastR_python_tutorial.ipynb index bd1db67..2b85e47 100644 --- a/nflfastR_python_tutorial.ipynb +++ b/nflfastR_python_tutorial.ipynb @@ -72,7 +72,7 @@ "\n", "
\n", "\n", - " - [\"matplotlib\"][matplotlib] This is the basic plotting library for python that allows us to vizualize our data.\n", + " - [\"matplotlib\"][matplotlib] This is the basic plotting library for python that allows us to visualize our data.\n", "\n", "
\n", "\n", @@ -115,7 +115,7 @@ "id": "upYbqQjmRMjz" }, "source": [ - "*We use shorter aliases when importing these pacakges for qulity of life purposes. When calling a function from a package, we need to preface it with its alias. For example, having to type out ```matplotlib.pyplot.plot()``` every time you'd like to plot something is rather inconvenient as opposed to using the alias we assigned to it by typing ```plt.plot()```*." + "*We use shorter aliases when importing these packages for quality of life purposes. When calling a function from a package, we need to preface it with its alias. For example, having to type out ```matplotlib.pyplot.plot()``` every time you'd like to plot something is rather inconvenient as opposed to using the alias we assigned to it by typing ```plt.plot()```*." ] }, {