File tree Expand file tree Collapse file tree 2 files changed +112
-0
lines changed Expand file tree Collapse file tree 2 files changed +112
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments