Publications by Taha Ahmad

DATA624 FPP Chapter 2

05.09.2023

library(fpp3) Introduction In this document, we will be going through exercises 2.1, 2.2, 2.3, 2.4, 2.5, and 2.8 from Forecasting: Principles and Practice (3rd ed). Exercises 2.1 Explore the following four time series: Bricks from aus_production, Lynx from pelt, Close from gafa_stock, Demand from vic_elec. Use ? (or help()) to find out about...

7408 sym R (9490 sym/71 pcs) 31 img

DATA 607 Final Project

15.05.2023

# load in required packages library(tidyverse) library(tidytext) library(textstem) library(wordcloud) library(RColorBrewer) library(ranger) library(tm) library(httr2) library(rvest) library(jsonlite) library(psych) library(glue) library(GGally) library(ggpubr) library(ggfortify) Introduction Video game developers trying to market an...

22981 sym R (15308 sym/41 pcs) 14 img 4 tbl

DATA 605 Final Project

10.05.2023

library(tidyverse) library(pracma) library(stats) library(glue) library(GGally) library(matrixcalc) library(MASS) library(ggfortify) library(caret) select <- dplyr::select set.seed(1337) Problem 1 Density Generation Probability Density 1: X ~ Gamma. Using R, generate a random variable X that has 10,000 random Gamma pdf values. A Gamma...

16742 sym R (23209 sym/70 pcs) 13 img 1 tbl

DATA 606 Final Project

04.05.2023

# load in required packages library(tidyverse) library(httr2) library(jsonlite) library(psych) library(GGally) library(ggpubr) library(ggfortify) Abstract In this project, we take data regarding games listed on Valve’s Steam platform for video games from the Steam Spy API. Specifically, we’re interested in the median playtime of the g...

17994 sym R (6341 sym/25 pcs) 10 img 5 tbl

Data 607 Week 12 Project

28.04.2023

library(tidyverse) library(httr2) library(R.utils) library(tm) library(quanteda) library(e1071) library(caret) Introduction When you are dealing with classification problems that have large sets of publicly available data, the best method to resolve such problems is to train a classifier on them. In this project we will be utilizing a pub...

3249 sym R (8092 sym/12 pcs)

DATA 605 Multiple Regression Discussion

17.04.2023

Introduction The data that I have decided to tackle is Steam (an online video game marketplace) game data. The data is retrieved through an API called Steam Spy which monitors changes to the games on the marketplace. Specifically, we are looking at the 100 games which had the most users in the past two weeks. Data Preparation # load in require...

4790 sym R (2122 sym/4 pcs) 1 img 1 tbl

Data 605 - Week 11 Discussion

07.04.2023

Introduction The data that I have decided to tackle is Steam (an online video game marketplace) game data. The data is retrieved through an API called Steam Spy which monitors changes to the games on the marketplace. Specifically, we are looking at the 100 games which had the most users in the past two weeks. Data Preparation # load in require...

3374 sym R (1943 sym/8 pcs) 3 img 1 tbl

DATA 607 Week 10 Assignment

29.03.2023

library(tidyverse) library(janeaustenr) library(tidytext) library(gutenbergr) library(wordcloud) library(reshape2) library(lexicon) Introduction With the textbook Text Mining with R by by Julia Silge and David Robinson, we explore utilizing sentiment analysis on text. We begin with mimicking code examples present in the text, and then we ...

7662 sym R (11129 sym/31 pcs) 10 img

DATA 607 Week 9 Project

22.03.2023

library(tidyverse) library(httr2) library(jsonlite) library(keyring) Introduction For this assignment, we’ll be practicing our knowledge of Tidyverse functions by creating vignette examples of the packages that make up Tidyverse. In my case, I wanted to attempt going over the forcats package which focuses on manipulating factor elements in...

9877 sym R (12273 sym/41 pcs)

DATA 607 Week 9 Assignment

21.03.2023

library(tidyverse) library(httr2) library(jsonlite) library(keyring) Introduction For this assignment, we’ll be testing our capabilities of accessing APIs and pulling json data from them into data frames. Specifically, we’ll be looking at data from the New York Times books API. Loading an API Key First and foremost, we’ve registered fo...

1936 sym R (1264 sym/7 pcs) 1 tbl