1
0
mirror of https://github.com/gsi-upm/sitc synced 2026-03-02 17:58:16 +00:00

Update 3_3_Data_Munging_with_Pandas.ipynb

This commit is contained in:
Carlos A. Iglesias
2026-03-02 16:00:05 +01:00
committed by GitHub
parent f09997743d
commit 8e9d3cfdad

View File

@@ -120,7 +120,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We see some features have a numerical type (int64 and float64), and others has a type *object*. The object type is a String in Pandas. We observe that most features are integers, except for Name, Sex, Ticket, Cabin and Embarked."
"We see some features have a numerical type (int64 and float64), and others have a type *object*. The object type in Pandas is a String. We observe that most features are integers, except for Name, Sex, Ticket, Cabin, and Embarked."
]
},
{
@@ -164,7 +164,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Observe that some of the statistics do not make sense in some columns (PassengerId or Pclass), we could have selected only the interesting columns."
"Observe that some of the statistics do not make sense in some columns (PassengerId or Pclass); we could have selected only the interesting columns."
]
},
{
@@ -181,7 +181,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Selecting rows in a DataFrame"
"## Selecting rows in a DataFrame."
]
},
{