Publications by Anil Akyildirim

User Engagement Revenue

13.05.2020

1 Introduction Google Analytics is a well known Web Analytics Platform that allows businesses to track the consumer acquisition, engagement, beahvior and conversion through their website. Even though it might be considered as a basic platform, it follows the standard Data Science process where it collects data from website user’s browser, trans...

27198 sym R (41027 sym/83 pcs) 5 img

MLB Prediction Models

25.02.2020

0.1 Introduction In this assignment, we are tasked to explore, analyze and model a major league baseball dataset which contains around 2000 records where each record presents a baseball team from 1871 to 2006. Each observation provides the perforamce of the team for that particular year with all the statistics for the performance of 162 game seas...

61718 sym R (129944 sym/189 pcs) 20 img 14 tbl

Principles of Data Visualization

05.02.2020

Principles of Data Visualization and Introduction to ggplot2 I have provided you with data about the 5,000 fastest growing companies in the US, as compiled by Inc. magazine. lets read this in: library(ggplot2) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## ...

1540 sym R (6233 sym/16 pcs) 5 img

College Fight Songs

06.12.2019

#Loading Required Packages library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(ggplot2) library(lubridate) ## ## Attaching package: 'lubridate' ## T...

29348 sym R (14833 sym/57 pcs) 17 img

Twitter Sentiment Analysis

06.12.2019

Load R Packages # Load Requried Packages library(tm) library(lda) library(httr) library(dplyr) library(tidyr) library(anytime) library(stringi) library(twitteR) library(syuzhet) library(tidytext) library(tidyverse) library(SnowballC) library(topicmodels) library(wordcloud) library(BiocManager) # Package required for running Twitt...

8533 sym R (43164 sym/65 pcs) 10 img

Tidyverse Package

03.12.2019

1 Introduction In this assignment, we are looking at tidyverse which has collection of R packages that can help us loading the dataset to R, cleaning, transforming and visuzalizing of the data.The goal of this assignment is to create a sample dataset that shows the capabilities of tidyverse with and example dataset. The example dataset I selected...

11149 sym R (6881 sym/37 pcs) 1 img

Computational Math Assignment 15

03.12.2019

Questions Find the equation of the regression line for the given points. Round any final values to the nearest hundredth, if necessary. (5.6, 8.8), (6.3, 12.4), (7, 14.8), (7.7, 18.2), (8.4, 20.8) Find all local maxima, local minima, and saddle points for the function given below. Write your answer(s) in the form ( x, y, z). Separate multiple po...

2519 sym R (1119 sym/7 pcs) 2 img

Taylor Series

29.11.2019

Question This week, we’ll work out some Taylor Series expansions of popular functions. \(f(x)=\frac{1}{(1-x)}\) \(f(x)=e^{x}\) \(f(x)=ln(1+x)\) For each function, only consider its valid ranges as indicated in the notes when you are computing the Taylor Series expansion. Please submit your assignment as a R-Markdown document. Answer \(f(x)=\fr...

1434 sym

Movielens Recommender Systems

24.11.2019

Introduction Movielens is a platform that allows users to get non-commercial, personilized movie recommendations. The platform has a huge database of movies that users can browse through, review the community-applied tags, or apply their own tags. One aspect of the platform is that, it offers it’s users to tune the matching algorithm so the res...

4320 sym 4 img

calculus-one

23.11.2019

Question 1. Use integration by substitution to solve the integral below. \(\left(\int 4e^{-7x} \; dx\right)\) Answer 1. \(u=-7x\) \(\frac{du}{dx}=-7\) \(du=-7dx\) \(dx=\frac{du}{-7}=\frac{1}{7}du\) \(\frac{-4}{7}\left(\int e^{u}\; dx\right)\) \(\frac{4}{7}e^{u}\) \(\frac{4}{7}e^{-7x}+C\) Question 2. Biologists are treating a pond contaminated w...

2854 sym R (214 sym/3 pcs) 1 img