Visualisierung in höheren Dimensionen

Explorative Datenanalyse in R

Andrew Bray

Assistant Professor, Reed College

Plots für 3 Variablen

ggplot(cars, aes(x = msrp)) +
  geom_density() +
  facet_grid(pickup ~ rear_wheel)

ch2_4.005.png

Explorative Datenanalyse in R

Plots für 3 Variablen

ggplot(cars, aes(x = msrp)) +
  geom_density() +
  facet_grid(pickup ~ rear_wheel, labeller = label_both)

ch2_4.008.png

Explorative Datenanalyse in R

Plots für 3 Variablen

ggplot(cars, aes(x = msrp)) +
  geom_density() +
  facet_grid(pickup ~ rear_wheel, labeller = label_both)
table(cars$rear_wheel, cars$pickup)
      FALSE TRUE
FALSE   306   12
TRUE     98   12
Explorative Datenanalyse in R

Plots in höheren Dimensionen

  • Form

  • Größe

  • Farbe

  • Muster

  • Bewegung

  • x-Koordinate

  • y-Koordinate

Explorative Datenanalyse in R

Lass uns üben!

Explorative Datenanalyse in R

Preparing Video For Download...