Skip to content

Commit c8402f6

Browse files
committed
1
1 parent 4a53f12 commit c8402f6

File tree

2 files changed

+112
-0
lines changed

2 files changed

+112
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# PythonNRES 7.3 "
8+
]
9+
},
10+
{
11+
"cell_type": "markdown",
12+
"metadata": {},
13+
"source": [
14+
"## 3. Based on the information at http://www.rcc-acis.org/docs_webservices.html, write Python functions that\n",
15+
"1. return a dataframe that includes the daily climate data for a list of stations between a given period\n",
16+
"2. return a dataframe that includes the pentad mean climate data for a list of stations between a given period\n",
17+
"3. return a dataframe that includes the monthly mean climate data for a given county and a given period"
18+
]
19+
},
20+
{
21+
"cell_type": "code",
22+
"execution_count": null,
23+
"metadata": {},
24+
"outputs": [],
25+
"source": [
26+
"import numpy as np\n",
27+
"import urllib2\n",
28+
"import json\n",
29+
"\n",
30+
"import pandas as pd\n",
31+
"from pandas import DataFrame, Panel\n"
32+
]
33+
}
34+
],
35+
"metadata": {
36+
"kernelspec": {
37+
"display_name": "Python 3",
38+
"language": "python",
39+
"name": "python3"
40+
},
41+
"language_info": {
42+
"codemirror_mode": {
43+
"name": "ipython",
44+
"version": 3
45+
},
46+
"file_extension": ".py",
47+
"mimetype": "text/x-python",
48+
"name": "python",
49+
"nbconvert_exporter": "python",
50+
"pygments_lexer": "ipython3",
51+
"version": "3.7.4"
52+
}
53+
},
54+
"nbformat": 4,
55+
"nbformat_minor": 2
56+
}

7.3.ipynb

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# PythonNRES 7.3 "
8+
]
9+
},
10+
{
11+
"cell_type": "markdown",
12+
"metadata": {},
13+
"source": [
14+
"## 3. Based on the information at http://www.rcc-acis.org/docs_webservices.html, write Python functions that\n",
15+
"1. return a dataframe that includes the daily climate data for a list of stations between a given period\n",
16+
"2. return a dataframe that includes the pentad mean climate data for a list of stations between a given period\n",
17+
"3. return a dataframe that includes the monthly mean climate data for a given county and a given period"
18+
]
19+
},
20+
{
21+
"cell_type": "code",
22+
"execution_count": null,
23+
"metadata": {},
24+
"outputs": [],
25+
"source": [
26+
"import numpy as np\n",
27+
"import urllib2\n",
28+
"import json\n",
29+
"\n",
30+
"import pandas as pd\n",
31+
"from pandas import DataFrame, Panel\n"
32+
]
33+
}
34+
],
35+
"metadata": {
36+
"kernelspec": {
37+
"display_name": "Python 3",
38+
"language": "python",
39+
"name": "python3"
40+
},
41+
"language_info": {
42+
"codemirror_mode": {
43+
"name": "ipython",
44+
"version": 3
45+
},
46+
"file_extension": ".py",
47+
"mimetype": "text/x-python",
48+
"name": "python",
49+
"nbconvert_exporter": "python",
50+
"pygments_lexer": "ipython3",
51+
"version": "3.7.4"
52+
}
53+
},
54+
"nbformat": 4,
55+
"nbformat_minor": 2
56+
}

0 commit comments

Comments
 (0)