Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions nflfastR_python_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@
"#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",
" - [<img align=\"left\" alt=\"pandas\" width=\"150px\" src=\"https://pandas.pydata.org/docs/_static/pandas.svg\" />][pandas] This library provides easy-to-use data analysis and manipulation tools for python.\n",
"\n",
"<br/>\n",
"\n",
" - [<img align=\"left\" alt=\"matplotlib\" width=\"150px\" src=\"https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmatplotlib.org%2F_static%2Flogo2.png&f=1&nofb=1\" />][matplotlib] This is the basic plotting library for python that allows us to vizualize our data.\n",
" - [<img align=\"left\" alt=\"matplotlib\" width=\"150px\" src=\"https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmatplotlib.org%2F_static%2Flogo2.png&f=1&nofb=1\" />][matplotlib] This is the basic plotting library for python that allows us to visualize our data.\n",
"\n",
"<br/>\n",
"\n",
Expand Down Expand Up @@ -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()```*."
]
},
{
Expand Down