{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Pandas 1: Introduction to Pandas\n", "\n", "
!
dataFile
's file name so it references 0000 UTC Sep. 11, 2020, and then rerun the cell. Examine Wolcott's (WOLC) values. Change back to 0200 UTC 2 Sep. 2021 and re-run before you proceed!df
to store the resulting DataFrame
. We are free to choose any valid Python object name. For example, we could have named it nysmData21090200
(note that Python object names cannot start with a number).values
is not a column name, but a particular attribute
of this Series
object.describe
with a set of parentheses ()
. In this case, describe
is a particular method, or function that is available for a Pandas Series
.Series
object called RH and populate it with the column from the DataFrame
\n",
" corresponding to Relative Humidity. Print out its values and get its summary statistics."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Write your code below. \n",
"# After you have done so, you can compare your code to the solution by uncommenting the line in the cell below.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# %load /spare11/atm533/common/pandas/01a.py"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"