5  Lösungen Dinojudo

5.1 Lösung 1

# Aufgabe 1 

library(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.4     ✔ readr     2.1.5
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.5.1     ✔ tibble    3.2.1
✔ lubridate 1.9.3     ✔ tidyr     1.3.1
✔ purrr     1.0.2     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
#1.1
library(readr)
Jurassic_Park <- read_csv("https://raw.githubusercontent.com/raphaelbalzer/Tutorium_QM1_SoSe23/main/Jurassic_Park.csv")
New names:
Rows: 291 Columns: 11
── Column specification
──────────────────────────────────────────────────────── Delimiter: "," chr
(9): name, diet, period, lived_in, type, taxonomy, named_by, species, link dbl
(2): ...1, Length
ℹ Use `spec()` to retrieve the full column specification for this data. ℹ
Specify the column types or set `show_col_types = FALSE` to quiet this message.
• `` -> `...1`
#1.2
head(Jurassic_Park, n = 10)
ABCDEFGHIJ0123456789
...1
<dbl>
name
<chr>
diet
<chr>
19confuciusorniscarnivorous
20shanagcarnivorous
21archaeopteryxcarnivorous
22microceratusherbivorous
23compsognathuscarnivorous
24micropachycephalosaurusherbivorous
25shuvuuiaomnivorous
26gasparinisauraherbivorous
27juravenatorcarnivorous
28microraptorcarnivorous
#1.3
tail(Jurassic_Park, n = 10)
ABCDEFGHIJ0123456789
...1
<dbl>
name
<chr>
diet
<chr>
300lurdusaurusherbivorous
301maiasauraherbivorous
302malawisaurusherbivorous
303megalosauruscarnivorous
304poekilopleuroncarnivorous
305saurolophusherbivorous
306sonidosaurusherbivorous
307stegosaurusherbivorous
308triceratopsherbivorous
309yimenosaurusherbivorous

5.2 Lösung 2

# Aufgabe 2

#2.1
Jurassic_Park2 <- Jurassic_Park %>% 
  select(name, diet,lived_in,type,Length, species, named_by)

#2.2
Jurassic_Park2 %>% 
  arrange(-Length) -> Jurassic_Park2

#2.3
Jurassic_Park2 %>% 
  count(Length > 7.5)
ABCDEFGHIJ0123456789
Length > 7.5
<lgl>
n
<int>
FALSE191
TRUE100

5.3 Lösung 3

# Aufgabe 3

#3.1
Jurassic_Park %>% 
  summarise(mean(Length))
ABCDEFGHIJ0123456789
mean(Length)
<dbl>
7.200584
#3.2
Jurassic_Park %>% 
  count(diet)
ABCDEFGHIJ0123456789
diet
<chr>
n
<int>
carnivorous92
herbivorous170
herbivorous/omnivorous1
omnivorous27
unknown1
#3.3
Jurassic_Park2 %>% 
  select(named_by, name) %>% 
  filter(name == "gobisaurus")
ABCDEFGHIJ0123456789
named_by
<chr>
name
<chr>
Vickaryous Russell Currie and Zhao (2001)gobisaurus

5.4 Lösung 4

#4.1
Jurassic_Park %>% 
  group_by(diet) %>% 
  summarise(mean(Length))
ABCDEFGHIJ0123456789
diet
<chr>
mean(Length)
<dbl>
carnivorous5.193696
herbivorous8.898824
herbivorous/omnivorous5.150000
omnivorous3.651852
unknown1.000000
#4.2
Jurassic_Park %>% 
  select(type, lived_in) %>% 
  filter(type == "armoured dinosaur") %>% 
  count(lived_in)
ABCDEFGHIJ0123456789
lived_in
<chr>
n
<int>
Australia1
Canada1
China4
Germany1
Mongolia4
Spain1
Tanzania1
USA12
United Kingdom4
#4.3
Jurassic_Park %>% 
  select(Length, type) %>% 
  filter(type == "small theropod") %>% 
  arrange(Length)
ABCDEFGHIJ0123456789
Length
<dbl>
type
<chr>
0.25small theropod
0.45small theropod
0.50small theropod
0.60small theropod
0.65small theropod
0.80small theropod
0.80small theropod
0.90small theropod
1.00small theropod
1.00small theropod
#4.4
Jurassic_Park %>% 
  select(diet, lived_in) %>%
  filter(lived_in == "USA") %>% 
  count(diet)
ABCDEFGHIJ0123456789
diet
<chr>
n
<int>
carnivorous20
herbivorous53
omnivorous2

5.5 Lösung 5

# Dino1
Jurassic_Park %>% 
  select(type, diet, lived_in, Length) %>% 
  filter(lived_in == "North Africa",
         type == "large theropod",
         diet == "carnivorous") %>%
  summarise(mean(Length))
ABCDEFGHIJ0123456789
mean(Length)
<dbl>
15
# Dino2
Jurassic_Park %>% 
  select(type, diet, lived_in, Length) %>% 
  filter(lived_in == "China",
         type == "sauropod",
         diet == "herbivorous") %>%
  summarise(mean(Length))
ABCDEFGHIJ0123456789
mean(Length)
<dbl>
11.58333