Skip to content

Commit a6ed749

Browse files
committed
initial commit
0 parents  commit a6ed749

File tree

4 files changed

+3879
-0
lines changed

4 files changed

+3879
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
**/.DS_Store
2+
**/*.ipynb_checkpoints/
3+
**/__pycache__
4+
node_modules/
5+

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
![Ironhack logo](https://i.![logo_ironhack_blue 7](https://user-images.githubusercontent.com/23629340/40541063-a07a0a8a-601a-11e8-91b5-2f13e4e6b441.png)
2+
3+
# Lab | Map, Reduce, Filter
4+
5+
6+
## Introduction
7+
8+
In this lab, we will implement what we have learned about functional programming using the map, reduce, and filter functions. These functions allow us to pass an input and a transformation to a function and produce an output.
9+
10+
## Getting Started
11+
12+
Open the `main.ipynb` file in the `your-code` directory. Follow the instructions and add your code and explanations as necessary. By the end of this lab, you will have learned about mapping, reducing, and filtering as well as applying functions in Pandas.
13+
14+
## Deliverables
15+
16+
- `main.ipynb` with your responses.
17+
18+
## Submission
19+
20+
Upon completion, add your deliverables to git. Then commit git and push your branch to the remote.
21+
22+
## Resources
23+
24+
- [The Official Python Documentation on Mapping, Reducing, and Filtering](https://docs.python.org/3/howto/functional.html#built-in-functions)
25+
- [The `apply` Function in Pandas](https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.apply.html)

0 commit comments

Comments
 (0)