Mulai sekarangMulai gratis

Correlation coefficient

Correlation coefficients can give a starting assessment to a correlation test and can be used to determine the proportion of variance explained in variable x that can be attributed to variable y.

A company with a website is interested in the activity of their website users, and believes the amount of time the users spent searching on the site is positively correlated with the amount of time spent checking out on the site. Assess the company's assumption in the webdata dataset.

The webdata data set and ggplot2 package have been loaded for you.

Latihan ini merupakan bagian dari kursus

A/B Testing in R

Lihat Kursus

Instruksi latihan

  • Create a scatter plot of Time on the x-axis and TimeSearching on the y-axis.
  • Determine the correlation coefficient of Time and TimeSearching and store it as coeff.
  • Derive the proportion of variation in Time that can be attributed to TimeSearching.

Latihan interaktif langsung praktik

Cobalah latihan ini dengan melengkapi kode contoh ini.

# Create a scatter plot 
ggplot(___) + 
  ___

# Determine the correlation coefficient
___

# Determine the proportion of variance
___
Edit dan Jalankan Kode