mariokart-korr3

datawrangling
dplyr
eda
association
num
Published

May 8, 2023

Aufgabe

Importieren Sie den Datensatz mariokart in R. Berechnen Sie die Korrelation von mittlerem Verkaufspreis (total_pr) und Startgebot (start_pr) für Spiele, die sowohl neu sind und über Lenkräder (wheels) verfügen.

Hinweise:











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)
solution <-
d  %>% 
  filter(cond == "new" & wheels > 0) %>% 
  summarise(pr_corr = cor(total_pr, start_pr))

solution
    pr_corr
1 0.4315485

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

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

Parameter1 | Parameter2 |    r |        95% CI | t(53) |         p
------------------------------------------------------------------
start_pr   |   total_pr | 0.43 | [ 0.19, 0.63] |  3.48 | 0.002**  
start_pr   |     wheels | 0.12 | [-0.15, 0.37] |  0.86 | 0.393    
total_pr   |     wheels | 0.77 | [ 0.64, 0.86] |  8.82 | < .001***

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

Lösung: 0.4.


Categories:

  • datawrangling
  • dplyr
  • eda
  • association
  • num