Are error bars (e.g., confidence intervals) included where relevant?
Critically Assess Graphs
Scale Matters
Error Bars!
Correlation
Pearson Correlation
In statistics, the Pearson correlation coefficient, also referred to as the Pearson’s r, Pearson product-moment correlation coefficient (PPMCC) or bivariate correlation, is a measure of the linear correlation between two variables X and Y. It has a value between +1 and −1, where 1 is total positive linear correlation, 0 is no linear correlation, and −1 is total negative linear correlation. It is widely used in the sciences. It was developed by Karl Pearson from a related idea introduced by Francis Galton in the 1880s.
n <-10data <-read.csv("../../../datasets/Album Sales.csv")[, -4]data <- data[1:n, ] # take the first 10 rows of the album sales data set from FieldDT::datatable(data, rownames =FALSE, options =list(searching =FALSE, scrollY =415, paging = F, info = F))