mariokart-korr2

datawrangling
dplyr
eda
association
num
Published

May 8, 2023

Aufgabe

Importieren Sie den Datensatz mariokart in R. Filtern Sie die neuen Spiele. Berechnen Sie die Korrelation von Verkaufspreis (total_pr) und Startgebot (start_pr)!

Hinweise:

  • Runden Sie auf 2 Dezimalstellen.











Lösung

Pakete starten:

library(tidyverse)
library(easystats)

Daten importieren:

d_url <- "https://vincentarelbundock.github.io/Rdatasets/csv/openintro/mariokart.csv"
d <- data_read(d_url)

Oder so:

data(mariokart, package = "openintro")
solution <- 
d  %>% 
  filter(cond == "new") %>% 
  summarise(pr_cor = cor(total_pr, start_pr))
solution
    pr_cor
1 0.405102

Alternativ kann man (komfortabel) die Korrelation z.B. so berechnen:

d %>% 
  select(start_pr, total_pr, cond) %>% 
  filter(cond == "new") %>% 
  correlation()
# Correlation Matrix (pearson-method)

Parameter1 | Parameter2 |    r |       95% CI | t(57) |       p
---------------------------------------------------------------
start_pr   |   total_pr | 0.41 | [0.17, 0.60] |  3.35 | 0.001**

p-value adjustment method: Holm (1979)
Observations: 59

Lösung: 0.41.


Categories:

  • datawrangling
  • dplyr
  • eda
  • association
  • num