LoslegenKostenlos loslegen

Spearman correlation analysis

A Spearman correlation assesses the strength and direction of a monotonic relationship.

A company is interested in assessing the relationship between the time users spend on their website and the amount the users spent. Perform the Spearman correlation test ignoring groups and run the power analysis of the test to determine if there is a significant monotonic relationship in the rankings of these variables and whether the results found are reliable.

The pwr package and webdata dataset have been loaded for you.

Diese Übung ist Teil des Kurses

A/B Testing in R

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Run the Spearman correlation
___ <- cor.test(___, 
         data = ___, 
         method = ___, exact = ___)
Code bearbeiten und ausführen