This commit is contained in:
Asabeneh 2020-07-10 09:51:10 +03:00
parent bbc8e1438b
commit cdb67d9754

View File

@ -1205,20 +1205,16 @@ print('Mean: ',mean) #it is good to add some description to the output, so we kn
```
```sh
Mean: 32.5
```
### Boolean Indexing
```python
print(df[df['Ages'] > 120])
```
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
@ -1255,8 +1251,6 @@ print(df[df['Ages'] > 120])
print(df[df['Ages'] < 120])
```
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
@ -1300,7 +1294,6 @@ print(df[df['Ages'] < 120])
</tbody>
</table>
## Exercises: Day 25
1. Read the hacker_ness.csv file from data directory
1. Get the first five rows