Chapter 8 Bivariate Data Analysis

8.1 Objective

The objective of this tutorial is to explain how bivariate analysis works.This analysis can be used by marketers to make decisions about their pricing strategies, advertising strategies, and promotion stratgies among others.

Bivariate analysis is one of the simplest forms of statistical analysis. It is generally used to find out if there is a relationship between two sets of values (or two variables). That said, it usually involves the variables X and Y (statisticshowto.com).

  • Univariate analysis is the analysis of one (“uni”) variable.
  • Bivariate analysis is the analysis of exactly two variables.
  • Multivariate analysis is the analysis of more than two variables.

8.2 Dataset - We will be using two online datasets available in R for this tutorial

### Question 1:is there a relationship between x and y? If so, how does the relationship look like? ## Your answer here

## Warning: Missing column names filled in: 'X1' [1]
## Warning: Duplicated column names deduplicated: 'X1' => 'X1_1' [2]
## Parsed with column specification:
## cols(
##   X1 = col_double(),
##   X1_1 = col_double(),
##   TV = col_double(),
##   radio = col_double(),
##   newspaper = col_double(),
##   sales = col_double()
## )

8.2.1 Question 2:Is there a relationship between TV advertising and Sales? If so, how does the relationship look like?

8.2.2 Your answer here

8.2.3 Question 3:Can you plot the relationship between radio advertising and Sales? If so, how does the relationship look like?

###Your answer here

###Question 4:Three things you learned from this tutorial ###Your answer here

8.3 References

Bivariate Analysis Definition & Example https://www.statisticshowto.com/bivariate-analysis/#:~:text=Bivariate%20analysis%20means%20the%20analysis,the%20variables%20X%20and%20Y.

https://www.sciencedirect.com/topics/mathematics/bivariate-data