Skip to content

Commit

Permalink
Cleaning data and clusterization methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mecomonteshbtn committed Jul 13, 2021
1 parent 090c4cf commit c779e21
Show file tree
Hide file tree
Showing 10 changed files with 4,519 additions and 0 deletions.
1,082 changes: 1,082 additions & 0 deletions Cleaning/Feature+engineering.ipynb

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions Cleaning/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Machine Learning Specialization
---
## Requirements
### Python Scripts

* Allowed editors: vi, vim, emacs
* All your files will be interpreted/compiled on Ubuntu 16.04 LTS using python3 (version 3.5)
* Your files will be executed with numpy (version 1.15)
* All your files should end with a new line
* The first line of all your files should be exactly #!/usr/bin/env python3
* A README.md file, at the root of the folder of the project, is mandatory
* Your code should follow pycodestyle (version 2.5)
* All your modules should have documentation (python3 -c 'print(__import__("my_module").__doc__)')
* All your classes should have documentation (python3 -c 'print(__import__("my_module").MyClass.__doc__)')
* All your functions (inside and outside a class) should have documentation (python3 -c 'print(__import__("my_module").my_function.__doc__)' and python3 -c 'print(__import__("my_module").MyClass.my_function.__doc__)')
* Unless otherwise noted, you are not allowed to import any module
* All your files must be executable
* The length of your files will be tested using wc

---
## More Info
Installing Ubuntu 16.04 and Python 3.5

Follow the instructions listed in Using Vagrant on your personal computer, with the caveat that you should be using ubuntu/xenial64 instead of ubuntu/trusty64.

Python 3.5 comes pre-installed on Ubuntu 16.04. How convenient! You can confirm this with python3 -V
Installing pip 19.1

```
wget https://bootstrap.pypa.io/get-pip.py
sudo python3 get-pip.py
rm get-pip.py
```
To check that pip has been successfully downloaded, use pip -V. Your output should look like:
```
$ pip -V
pip 19.1.1 from /usr/local/lib/python3.5/dist-packages/pip (python 3.5)
```
Installing numpy 1.15, scipy 1.3, and pycodestyle 2.5
```
$ pip install --user numpy==1.15
$ pip install --user scipy==1.3
$ pip install --user pycodestyle==2.5
```
To check that all have been successfully downloaded, use pip list.
Tasks

---
## Authors

* **Robinson Montes** - [mecomonteshbtn](https://github.com/mecomonteshbtn)

Loading

0 comments on commit c779e21

Please sign in to comment.