Session Ready
Exercise

Exercise 2. Printing

Remember that to print an object you can use the command print or simply type the object. For example, instead of

x <- 2
print(x)

you can simply type

x <- 2
x

Print the object p defined in exercise one

p <- ggplot(murders)

and describe what you see.

Instructions
50 XP
Possible Answers