Skip to content

Commit 3cf7f21

Browse files
committed
fix Pandas -> pandas
1 parent 5e4d325 commit 3cf7f21

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

notebooks/01 - pandas basics.ipynb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"# Pandas Basics\n",
7+
"# pandas Basics\n",
88
"\n",
9-
"[*Pandas*](http://pandas.pydata.org/) is a popular data science tool for managing, manipulating and analyzing column-oriented data."
9+
"[*pandas*](http://pandas.pydata.org/) is a popular data science tool for managing, manipulating and analyzing column-oriented data."
1010
]
1111
},
1212
{
@@ -24,15 +24,15 @@
2424
"source": [
2525
"In this notebook, we will cover:\n",
2626
"\n",
27-
"- Pandas data structures\n",
27+
"- pandas data structures\n",
2828
"- Description of the data\n",
2929
"- Loading data from CSV\n",
3030
"- Inspecting the data\n",
3131
"- Data selection and filtering\n",
3232
"- Data transformation\n",
3333
"- Sorting values\n",
3434
"\n",
35-
"## 1. Pandas data structures\n",
35+
"## 1. pandas data structures\n",
3636
"\n",
3737
"We'll work with two main [data structures](https://en.wikipedia.org/wiki/Data_structure) offered by pandas:\n",
3838
"\n",
@@ -41,7 +41,7 @@
4141
"\n",
4242
"You can create `Series` and `DataFrame` objects by passing the desired values explicitly, e.g. passing a list for a `Series` and a dictionary in the format `{'column': [list of values]}` for a `DataFrame` .\n",
4343
"\n",
44-
"Pandas also offers some helper functions to load data from specific formats, e.g. `read_csv()`.\n",
44+
"pandas also offers some helper functions to load data from specific formats, e.g. `read_csv()`.\n",
4545
"\n",
4646
"\n",
4747
"## 2. Description of the data\n",
@@ -86,7 +86,7 @@
8686
"\n",
8787
"The function `pandas.read_csv()` can be used to load a CSV file into a pandas `DataFrame`.\n",
8888
"\n",
89-
"Pandas also supports other file formats out of the box: https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html"
89+
"pandas also supports other file formats out of the box: https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html"
9090
]
9191
},
9292
{
@@ -237,7 +237,7 @@
237237
"cell_type": "markdown",
238238
"metadata": {},
239239
"source": [
240-
"You may notice from the result of running `info()` above that the [dtype](https://pbpython.com/pandas_dtypes.html) of the date column is an object instead of a datetime. This is because Pandas thinks it is a string instead of a date. This is bad not just from an efficiency standpoint, and also because you wouldn't be able to do datetime operations on that column (eg: comparing if it's earlier or later vs another date). It is good practice to process the data to fix this as soon as you load the data!\n",
240+
"You may notice from the result of running `info()` above that the [dtype](https://pbpython.com/pandas_dtypes.html) of the date column is an object instead of a datetime. This is because pandas thinks it is a string instead of a date. This is bad not just from an efficiency standpoint, and also because you wouldn't be able to do datetime operations on that column (eg: comparing if it's earlier or later vs another date). It is good practice to process the data and fix this as early on as possible!\n",
241241
"\n",
242242
"#### Exercise\n",
243243
"\n",

0 commit comments

Comments
 (0)