Data-Science-Portfolio

Data Science Portfolio

Projects using Exploratory Data Analysis, Predictive Data Analysis, and Machine Learning techniques.

Contents


Languages used:

Python R

🧰 Frameworks and libraries

NumPy Pandas Keras TensorFlow TensorFlow

💻 Software and tools

Jupyter Visual Studio Code Git Google Sheets




Projects


Exploratory Data Analysis and Predictive Analysis using R: Boston House Data

Overview

Let me know if you have an questions via email.

View full project here

❗IMPORTANT❗

If you are going to download the file make sure the following libraries are installed.

Libraries used in this Project:

For Visualization:

library(corrplot)
library(lattice)
library(ggplot2)
library(plotly)

For Data Splitting

library(dplyr)

Predictive Analysis using Python: Amazon Stock Price Prediction

Overview

I encourage you to try this out with different values and see what you get!

Let me know if you have an questions via email.

View the full project here.

❗IMPORTANT❗

If you are going to download the file make sure the following libraries are installed.

Libraries used in this Project:

Data Preprocessing/Manipulation

import pandas as pd
import numpy as np

Visualization

import matplotlib.pyplot as plt
import seaborn as sns

Stock Market Data from Yahoo Finance API

import yfinance as yf

Support Vector Machine Model

from sklearn.svm import SVC
from sklearn.metrics import accuracy_score, precision_score
from sklearn.model_selection import train_test_split

Predictive Analysis using Linear Regression: Loan Status

Overview

❗IMPORTANT❗

If you are going to download the file make sure the following libraries are installed.


import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

from sklearn.preprocessing import LabelEncoder
from sklearn.model_selection import train_test_split
from sklearn.metrics import confusion_matrix
from sklearn.metrics import classification_report
from sklearn import metrics
from sklearn.metrics import accuracy_score
from sklearn.model_selection import GridSearchCV


from sklearn.linear_model import LogisticRegression

Let me know if you have an questions via email.