DAA_12_R-graphics

DAA_12_R-graphics

University

5 Qs

quiz-placeholder

Similar activities

penglihatan

penglihatan

8th Grade - University

10 Qs

Eye Structure 2

Eye Structure 2

University

10 Qs

Parts of the Eye

Parts of the Eye

KG - Professional Development

10 Qs

Quiz Sifat Cahaya dan Bagian Mata

Quiz Sifat Cahaya dan Bagian Mata

5th Grade - University

10 Qs

Eye Anatomy - Spelling Quiz

Eye Anatomy - Spelling Quiz

11th Grade - University

8 Qs

Aula 7 Minicurso R! – 19/06

Aula 7 Minicurso R! – 19/06

University

5 Qs

TSA AI

TSA AI

University

10 Qs

Post-Test ORW - IIM 1

Post-Test ORW - IIM 1

University

10 Qs

DAA_12_R-graphics

DAA_12_R-graphics

Assessment

Quiz

Biology, Science

University

Hard

Created by

Alfonso Gar

Used 2+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

plot(iris$Petal.Length ~ iris$Species)

Will make a dotplot

Will make a boxplot

Will make a pie plot

Will make a barplot

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

plot(iris$Species)

Will make a dotplot

Will make a boxplot

Will make a pie plot

Will make a barplot

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which won't work

plot(iris$Species)

plot(Species, data = iris)

plot(Sepal.Length ~ ., data = iris)

library(dplyr)

iris %>%

plot()

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

The next code will print:

library(ggplot2)

ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width))

Nothing

An empty frame

A dot plot

A box plot

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

The code will give:

library(ggplot2)

ggplot(iris, aes(x = Species,

y = Sepal.Width,

fill = Species)) +

geom_boxplot() +

geom_jitter()

A boxplot with all boxes the same color

A boxplot with different color for each species and all the points in black

A boxplot with different color for each species and all the points the same colors than the boxes

A dot plot