Skip to content

Instantly share code, notes, and snippets.

View mGalarnyk's full-sized avatar

Michael Galarnyk mGalarnyk

View GitHub Profile
import numpy as np
import pandas as pd
term = 60
P = 34689.96
def calc_interest(P,emi,interest_rate = 0.0702):
interest_paid = np.floor(((interest_rate/12)*P)*100)/100
principal_paid = np.round(emi-interest_paid, 2)
new_balance = np.round(P - principal_paid,2)
return(emi, interest_paid, principal_paid, new_balance)
@mGalarnyk
mGalarnyk / generate_loan_table.py
Created December 7, 2018 19:03
Calculate Car loan table. How much of a monthly payment (EMI) go to interest and how much go to principal
P = 34689.96
term = 60
def generate_loan_table(P, term, interest_rate=0.0702):
def calc_emi(P, n, interest_rate):
r = interest_rate / 12
numerator = (r *((1 + r)**(n)) )
denominator = ((1 + r)**(n)) - 1
emi = P * (numerator / denominator)
@mGalarnyk
mGalarnyk / us_state_abbrev.py
Last active May 21, 2018 16:52
A Python Dictionary to translate US States and territories to Two letter codes
us_state_abbrev = {
'Alabama': 'AL',
'Alaska': 'AK',
'Arizona': 'AZ',
'Arkansas': 'AR',
'California': 'CA',
'Colorado': 'CO',
'Connecticut': 'CT',
'Delaware': 'DE',
'Florida': 'FL',
@mGalarnyk
mGalarnyk / pcaCode.md
Last active February 21, 2021 06:32
Code for PCA Blog Post:
@mGalarnyk
mGalarnyk / DevelopingDataProductsQuiz1.md
Created October 3, 2017 22:00
Developing Data Products Quiz 1 for John Hopkins Coursera. Needs to be viewed here: https://github.com/mGalarnyk/datasciencecoursera/blob/master/9_Developing_Data_Products/quizzes/week1quiz1.md because images dont show well on gists.

Developing Data Products Week 1 Quiz 1 John Hopkins Coursera

Github repo for the Course: Developing Data Products John Hopkins (Coursera)
Quiz Needs to be viewed here at the repo (because the questions and some image solutions cant be viewed as part of a gist)

Question 1

True or False | Statement

@mGalarnyk
mGalarnyk / campaignLinksFromStartUrl.py
Created September 26, 2017 03:48
How many additional start_urls we want for the blog post: and youtube tutorial: https://youtu.be/O_j3OTXw2_E
for href in response.xpath("//h2[contains(@class, 'title headline-font')]/a[contains(@class, 'campaign-link')]//@href"):
# add the scheme, eg http://
url = "https:" + href.extract()
@mGalarnyk
mGalarnyk / additionalStartUrlsScrapy.py
Created September 26, 2017 03:13
How many additional start_urls we want for the blog post: and youtube tutorial: https://youtu.be/O_j3OTXw2_E
start_urls = ["https://fundrazr.com/find?category=Health"]
npages = 2
# This mimics getting the pages using the next button.
for i in range(2, npages + 2 ):
start_urls.append("https://fundrazr.com/find?category=Health&page="+str(i)+"")
@mGalarnyk
mGalarnyk / installAnaconda.md
Last active April 3, 2020 05:49
Install Anaconda on Multiple Operating Systems (Mac, Windows, Linux) and environment management (switching between Python 2 and 3, Configuring Jupyter Notebooks)
@mGalarnyk
mGalarnyk / MNIST_LogisticRegression.ipynb
Created September 13, 2017 17:15
Logistic Regression using Python (Sklearn, NumPy, MNIST, Handwriting Recognition, Matplotlib) on the MNIST Dataset for the youtube video: https://www.youtube.com/watch?v=71iXeuKFcQM
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mGalarnyk
mGalarnyk / MachineLearningSystemDesign.md
Created August 13, 2017 03:43
Machine Learning (Stanford) Coursera Advice for Machine Learning System Design Quiz (Week 6, Quiz 2) for the github repo: https://github.com/mGalarnyk/datasciencecoursera/tree/master/Stanford_Machine_Learning

Machine Learning Week 6 Quiz 2 (Machine Learning System Design) Stanford Coursera

Github repo for the Course: Stanford Machine Learning (Coursera)
Quiz Needs to be viewed here at the repo (because the questions and some image solutions cant be viewed as part of a gist)

Question 1

Statistic | Solution