Skip to content

Commit

Permalink
Pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Jul 10, 2020
1 parent bbc8e14 commit cdb67d9
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions 25_Day_Pandas/25_pandas.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;">
Expand Down Expand Up @@ -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;">
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit cdb67d9

Please sign in to comment.