Get startedGet started for free

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.

This exercise is part of the course

Data Science Visualization - Module 2

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise