Skip to content

Commit c5f8278

Browse files
committed
changes
1 parent b00b3ed commit c5f8278

File tree

5 files changed

+45
-13
lines changed

5 files changed

+45
-13
lines changed

02_Filtering_&_Sorting/.DS_Store

8 KB
Binary file not shown.

02_Filtering_&_Sorting/Euro12/Exercises.ipynb

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"cell_type": "markdown",
3030
"metadata": {},
3131
"source": [
32-
"### Step 2. Import the dataset from this [address](https://raw.githubusercontent.com/jokecamp/FootballData/master/UEFA_European_Championship/Euro%202012/Euro%202012%20stats%20TEAM.csv). "
32+
"### Step 2. Import the dataset from this [address](https://raw.githubusercontent.com/guipsamora/pandas_exercises/master/02_Filtering_%26_Sorting/Euro12/Euro_2012_stats_TEAM.csv). "
3333
]
3434
},
3535
{
@@ -227,8 +227,9 @@
227227
}
228228
],
229229
"metadata": {
230+
"anaconda-cloud": {},
230231
"kernelspec": {
231-
"display_name": "Python 2",
232+
"display_name": "Python [default]",
232233
"language": "python",
233234
"name": "python2"
234235
},
@@ -242,7 +243,7 @@
242243
"name": "python",
243244
"nbconvert_exporter": "python",
244245
"pygments_lexer": "ipython2",
245-
"version": "2.7.11"
246+
"version": "2.7.12"
246247
}
247248
},
248249
"nbformat": 4,

02_Filtering_&_Sorting/Euro12/Exercises_with_Solutions.ipynb

+8-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
{
2020
"cell_type": "code",
21-
"execution_count": 25,
21+
"execution_count": 2,
2222
"metadata": {
2323
"collapsed": false
2424
},
@@ -31,7 +31,7 @@
3131
"cell_type": "markdown",
3232
"metadata": {},
3333
"source": [
34-
"### Step 2. Import the dataset from this [address](https://raw.githubusercontent.com/jokecamp/FootballData/master/UEFA_European_Championship/Euro%202012/Euro%202012%20stats%20TEAM.csv). "
34+
"### Step 2. Import the dataset from this [address](https://raw.githubusercontent.com/guipsamora/pandas_exercises/master/02_Filtering_%26_Sorting/Euro12/Euro_2012_stats_TEAM.csv). "
3535
]
3636
},
3737
{
@@ -43,7 +43,7 @@
4343
},
4444
{
4545
"cell_type": "code",
46-
"execution_count": 36,
46+
"execution_count": 3,
4747
"metadata": {
4848
"collapsed": false
4949
},
@@ -563,13 +563,13 @@
563563
"[16 rows x 35 columns]"
564564
]
565565
},
566-
"execution_count": 36,
566+
"execution_count": 3,
567567
"metadata": {},
568568
"output_type": "execute_result"
569569
}
570570
],
571571
"source": [
572-
"euro12 = pd.read_csv('https://raw.githubusercontent.com/jokecamp/FootballData/master/UEFA_European_Championship/Euro%202012/Euro%202012%20stats%20TEAM.csv', sep=',')\n",
572+
"euro12 = pd.read_csv('https://raw.githubusercontent.com/guipsamora/pandas_exercises/master/02_Filtering_%26_Sorting/Euro12/Euro_2012_stats_TEAM.csv', sep=',')\n",
573573
"euro12"
574574
]
575575
},
@@ -2175,8 +2175,9 @@
21752175
}
21762176
],
21772177
"metadata": {
2178+
"anaconda-cloud": {},
21782179
"kernelspec": {
2179-
"display_name": "Python 2",
2180+
"display_name": "Python [default]",
21802181
"language": "python",
21812182
"name": "python2"
21822183
},
@@ -2190,7 +2191,7 @@
21902191
"name": "python",
21912192
"nbconvert_exporter": "python",
21922193
"pygments_lexer": "ipython2",
2193-
"version": "2.7.11"
2194+
"version": "2.7.12"
21942195
}
21952196
},
21962197
"nbformat": 4,

02_Filtering_&_Sorting/Euro12/Solutions.ipynb

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"cell_type": "markdown",
3030
"metadata": {},
3131
"source": [
32-
"### Step 2. Import the dataset from this [address](https://raw.githubusercontent.com/jokecamp/FootballData/master/Euro%202012/Euro%202012%20stats%20TEAM.csv). "
32+
"### Step 2. Import the dataset from this [address](https://raw.githubusercontent.com/guipsamora/pandas_exercises/master/02_Filtering_%26_Sorting/Euro12/Euro_2012_stats_TEAM.csv). "
3333
]
3434
},
3535
{
@@ -2138,8 +2138,9 @@
21382138
}
21392139
],
21402140
"metadata": {
2141+
"anaconda-cloud": {},
21412142
"kernelspec": {
2142-
"display_name": "Python 2",
2143+
"display_name": "Python [default]",
21432144
"language": "python",
21442145
"name": "python2"
21452146
},
@@ -2153,7 +2154,7 @@
21532154
"name": "python",
21542155
"nbconvert_exporter": "python",
21552156
"pygments_lexer": "ipython2",
2156-
"version": "2.7.11"
2157+
"version": "2.7.12"
21572158
}
21582159
},
21592160
"nbformat": 4,

LICENSE

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2018, Guilherme Samora
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)