Publications by Umer Farooq

Exponential Smoothing Forecast

29.02.2024

1. Consider the the number of pigs slaughtered in Victoria, available in the aus_livestock dataset. pigs <- aus_livestock|> filter(State == 'Victoria', Animal == 'Pigs') autoplot(pigs, Count)+ labs(y = "Count" , x = "Date" , title = "Pigs Slaughtered, Victoria") a. Use the ETS() function to estimate the equivalent model for...

4448 sym Python (9167 sym/50 pcs) 13 img

Data Preprocessing

25.02.2024

2.1 The UC Irvine Machine Learning Repository6 contains a data set related to glass identification. The data consist of 214 glass samples labeled as one of seven class categories. There are nine predictors, including the refractive index and percentages of eight elements: Na, Mg, Al, Si, K, Ca, Ba, and Fe. The data can be accessed via: library(mlbe...

3088 sym R (4931 sym/25 pcs) 8 img

The Forecaster's Toolbox

18.02.2024

1. Produce forecasts for the following series using whichever of NAIVE(y), SNAIVE(y) or RW(y ~ drift()) is more appropriate in each case: Australian Population (global_economy) Bricks (aus_production) NSW Lambs (aus_livestock) Household wealth (hh_budget). Australian takeaway food turnover (aus_retail). Answer: Australian Population (global_econo...

4441 sym 23 img

Time Series Decomposition

11.02.2024

Time Series Decomposition Umer Farooq 2024-02-11 1. Consider the GDP information in global_economy. Plot the GDP per capita for each country over time. Which country has the highest GDP per capita? How has this changed over time? global_economy |> autoplot(GDP/Population) + labs(title= "GDP per capita", y = "$US")+theme(legend.position = 'none...

5588 sym 29 img

Time Series Plots

04.02.2024

Exercises 1. Explore the following four time series: Bricks from aus_production, Lynx from pelt, Close from gafa_stock, Demand from vic_elec. A) Use ? (or help()) to find out about the data in each series. Answer: Let’s load the library first library(fpp3) ## ── Attaching packages ────────────────────�...

3728 sym R (8454 sym/74 pcs) 25 img

Predicting Wine Sales With Certain Properties

14.12.2023

Predicting Wine Sales With Certain Properties Predicting Wine Sales With Certain Properties INTRODUCTION: DATA EXPLORATION: DATA PREPARATION: BUILDING MODELS: SELECTING MODELS AND EVALUATION: CONCLUSION: Umer Farooq 2023-12-14 INTRODUCTION: In this study we will explore, analyze and model a data set containing informat...

6186 sym 7 img 4 tbl

Predicting The Probability Of A Car Crash And It's Cost

01.12.2023

Predicting The Probability Of A Car Crash And It’s Cost Predicting The Probability Of A Car Crash And It’s Cost INTRODUCTION: 1. DATA EXPLORATION: 2. DATA PREPARATION 3. BUILDING AND SELECTING MODELS : 4. EVALUATION 5. CONCLUSION: Umer Farooq 2023-12-01 INTRODUCTION: In this study, we will explore, an...

11540 sym 9 img 10 tbl

Predicting Whether The Neighborhood Will Be At Risk For High Crime Levels Using Logistics Regression

05.11.2023

Predicting Whether The Neighborhood Will Be At Risk For High Crime Levels Using Logistics Regression Predicting Whether The Neighborhood Will Be At Risk For High Crime Levels Using Logistics Regression INTRODUCTION: DATA EXPLORATION: DATA PREPARATION: BUILD MODELS MODEL SELECTION: CONCLUSION: APPENDIX: Umer Farooq 2023-...

8759 sym 10 img 7 tbl

Classification Model Metrics

09.10.2023

Introduction: Loading Data: Identifying the Columns: Accuracy: Classification Error Rate: Precision: Sensitivity: Specificity: F1 Score: F1 Score Bounds: ROC Curve and AUC: Classification metrics: Investigating caret Package: Investigating pR...

5680 sym 5 img 4 tbl

Predicting Wins for Baseball Game Using Multiple Linear Regression

26.09.2023

Predicting Wins for Baseball Game Using Multiple Linear Regression Predicting Wins for Baseball Game Using Multiple Linear Regression INTRODUCTION: DATA EXPLORATION: DATA PREPARATION: BUILDING MODELS: SELECTING MODELS AND PREDICTING: CONCLUSION: APPENDIX: Umer Farooq 2023-09-26 INTRODUCTION: In this particular p...

13845 sym 12 img 8 tbl