Final project: Which wine has the greatest quality mean?

Abstract The aim of this project is to determine if there is a statistically significant difference in quality scores between red and white wines. Two datasets are used from the UCI machine learning repository: one listing qualities of red wine and the other listing qualities of white wine. R and RStudio were used to conduct … Continue reading Final project: Which wine has the greatest quality mean?

Time Series Analysis and Exponential Smoothing

 Hello world! This week in advanced statistics we covered time series analysis and exponential smoothing. The problem for this week is as follows: The table below represents charges for a student credit card. a. Construct a time series plot using R. b. Employ Exponential Smoothing Model as outlined in Avril Voghlan's notes and report the statistical  outcome. c. Provide … Continue reading Time Series Analysis and Exponential Smoothing

Tabular Data

Hello world! This week in advanced statistics we covered tabular data. For our first question, we were to convert a given data frame into a table. This is the R code I used for my answer: # Loads data.table package library("data.table") # Creates assignment_data dataframe assignment_data <- data.frame(Country = c("France","Spain","Germany","Spain","Germany", "France","Spain","France","Germany","France"), age = c(44,27,30,38,40,35,52,48,45,37), salary … Continue reading Tabular Data

Random Variables and Probability Distributions

 Hello world! This week in advanced statistics we covered random variables and probability distributions. We were given three questions to answer, the first of which reads as follows: A. Consider a population consisting of the following values, which represent the number of ice cream purchases during the academic year for each of five housemates. 8, … Continue reading Random Variables and Probability Distributions

Hypothesis Testing and Correlation Analysis

This week in advanced statistics, we covered hypothesis testing and correlation analysis. We were assigned three questions to answer, which read as follows:  The director of manufacturing at a cookie factory needs to determine whether a new machine is producing a particular type of cookie according to the manufacturer's specifications, which indicate that cookies should … Continue reading Hypothesis Testing and Correlation Analysis