Some basic exploration and re-creation of machine learning algorithms.
This project uses simple machine learning algorithms on financial and breast cancer data. There is also code to build the algorithms from scatsch, without the use of libraries.
Some of the code requires some, or all of, the following libraries.
pandas
quandl
numpy
scikit-learn
pickle
matplotlib
as in
import pandas as pd
import quandl, math, datetime
import numpy as np
from sklearn import preprocessing, cross_validation, svm
from sklearn.linear_model import LinearRegression
import matplotlib.pyplot as plt
from matplotlib import style
import pickle