Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
ca33bb7
add .gitignore list
yokasre Jan 22, 2019
84a62c8
set up Ipython, progress: Input and Output History
yokasre Jan 22, 2019
3238d3b
Finish Ipython Introduction
yokasre Jan 22, 2019
6ff31e3
Edit log.md
yokasre Jan 22, 2019
b62d91e
edit markdown
yokasre Jan 22, 2019
a052745
fix typos in markdown
yokasre Jan 22, 2019
d2ee9aa
Update project markdown
yokasre Jan 22, 2019
0baca2c
Merge branch 'master' into Isaac
yokasre Jan 23, 2019
e055528
Pull changes from online repo
yokasre Jan 25, 2019
8fa898b
set progress to numpy array indexing
yokasre Jan 25, 2019
54d5c64
freeze a requirements.txt file
yokasre Jan 27, 2019
09df7e8
checkout numpy array broadcasting
yokasre Jan 28, 2019
d189e7c
Finish on Numpy arrays
yokasre Jan 31, 2019
75792bb
Update numpy progress
yokasre Jan 31, 2019
37f7c76
Update README.md
yokasre Jan 31, 2019
92b5603
install pandas library
yokasre Feb 7, 2019
1a8ec91
go through dataframe indexing
yokasre Feb 8, 2019
f82599b
Finish up on pandas
yokasre Feb 12, 2019
422f483
finish up on self test
yokasre Feb 12, 2019
fa15054
update progress on log
yokasre Feb 12, 2019
17f9420
start in kiva analytics
yokasre Feb 13, 2019
d86ac37
analyse kiva sector loans
yokasre Feb 16, 2019
dc2b68d
Finish v1.0 of kiva challenge
yokasre Feb 16, 2019
3b811ab
Kiva challenge initial completion
yokasre Feb 18, 2019
4fbafbc
Update challenge 1 progress
yokasre Feb 18, 2019
ff7c311
Finish matplotlib and start on self challenge
yokasre Feb 24, 2019
6c1968c
kiva vusualisation 101
yokasre Feb 25, 2019
82a7a42
Finish visualization self challenge
yokasre Feb 26, 2019
7f56320
Update progress
yokasre Feb 26, 2019
e3022a2
display map on kiva analytics
yokasre Feb 26, 2019
484356b
start machine learning
yokasre Mar 2, 2019
f2ce515
intro to ml
yokasre Mar 7, 2019
edb3461
update requirements
yokasre Mar 11, 2019
af59375
add stats eda on blood donations
yokasre Mar 21, 2019
941ea9b
do eda for blood donations
yokasre Mar 21, 2019
9c64eb4
finish donation challenge
yokasre Mar 25, 2019
0805b3d
Update log.md
yokasre Mar 25, 2019
c0fe108
skk
yokasre Apr 11, 2019
a65485a
deep ml
yokasre Apr 13, 2019
6b2c9c2
random forests
yokasre Apr 14, 2019
c9c897b
Finish ML challenge 101
yokasre Apr 21, 2019
4e9f5aa
Update log.md
yokasre Apr 21, 2019
9d600da
reload project
yokasre Jun 21, 2019
332dd5d
refine code
yokasre Jun 21, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
env/
venv/
myvenv/
kiva_loans.csv
data/santander/
16 changes: 16 additions & 0 deletions .idea/Python4ds_cohort-1.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/isaka.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/libraries/R_User_Library.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

179 changes: 179 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

80 changes: 80 additions & 0 deletions .ipynb_checkpoints/log-checkpoint.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# Master Python for Data Science Handbook - Log

## Week 1: Introduction to Ipython

**Today's Progress**: Finished going through Introduction to Ipython

**Thoughts**: Feeling great to learn Ipython. No blockers so far.

**Link to work**: [Introduction(Ipython)](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/Introduction-Ipython.ipynb)

## Week 2: Chapter 2: Introduction to Numpy

**This week's Progress**: Finished going through introduction to Numpy.

**Thoughts**: Numpy arrays are very interesting. Not only do they provide an efficient way of manipulating Datasets but also make it easier and faster.
No blockers so far and having learnt the basis of dataset manipulation I'm more than eager to move to Pandas.

**Link to work**: [Numpy Arrays](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/Numpy.ipynb)

## Week 3: Chapter 3: Data Manipulation with Pandas

**This week's Progress**: Finished up on Data Manipulation with Pandas.

**Thoughts**: Wow! It feels great to finally understand Pandas. Its a pretty wide subject but equally productive.
Very ready to dig into the challenge and gauge my understanding.

**Link to work**: [Pandas in General](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/Pandas%20in%20General.ipynb)

## Week 4: Practice(Challenge 1)

**This week's Progress**: Completed the Data Manipulation Challenge 1.

**Thoughts**: My first Data Science challenge. Very glad to have acquired some quality skills and very ready to dig into visualizations.

**Link to work**:[Challenge 1](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/kiva_analytics.ipynb)

## Week 5: Chapter 4: Data Visualization

**This week's Progress**: Finished up on data Visualizations and did a self challenge.

**Thoughts**: One of the most important chapters in Data Science. Glad to learn it.

**Link to work**:Learning: [Visualisations](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/Visualisations.ipynb)

**Self Challenge**: [Kiva Data Analytics](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/full_kiva_loans_analysis.ipynb)

## Week 6: Practice(Challenge 2)

**This week's Progress**: Finished on practice challenge 2: Blood Donation Prediction.

**Thoughts**: Glad to be able to tackle a typical machine Learning project.

**Link to work**: [Blood Donations Prediction](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/Prediction-Blood%20Donations.ipynb)

## Week 7: Chapter 5: Machine Learning

**This week's Progress**: Finished going through Machine Learning basics with scikit-learn.

**Thoughts**: Its so great to finally understand the art of Machine Learning. I love the basics I've learnt and will continue learning to be able to build models which will solve problems facing the society.

**Link to work(1)**: [Introduction to ML](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/intro_to_ML.ipynb)

**Link to work(2)**: [ML 102](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/ML.ipynb)

## Week 8&9: Practice(Challenge 3&4)

**This week's Progress**: Finished the Santander ML challenge.

**Thoughts**: Quite a large and frustrating dataset, but I managed. Kudos to me!

**Link to work**: [Santander Challenge](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/notebooks/Santander%20Customer%20Transaction%20Prediction.ipynb)
## Capstone project


## Contents
* [Rules](https://github.com/Python-4-DS/Python4ds_cohort-1/blob/master/rules.md)
* [Log - click here to see my progress](https://github.com/Python-4-DS/Python4ds_cohort-1/blob/master/log.md)
* [Resources](https://github.com/Python-4-DS/Python4ds_cohort-1/blob/master/resources.md)
* [FAQ](https://github.com/Python-4-DS/Python4ds_cohort-1/blob/master/FAQ.md)

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Cohort-1 Python for Data Science Nairobi
# Cohort-1 Python for Data Science Nairobi - Isaac

## Contents

* [Rules](https://github.com/Python-4-DS/Python4ds_cohort-1/blob/master/rules.md)

* [Log - click here to see my progress](https://github.com/Python-4-DS/Python4ds_cohort-1/blob/master/log.md)
* [Log - click here to see my progress](https://github.com/Kasre96/Python4ds_cohort-1/blob/Isaac/log.md)

* [Resources](https://github.com/Python-4-DS/Python4ds_cohort-1/blob/master/resources.md)

Expand Down
Loading