Files corresponding to Short Course: Introduction to Data Science Using R
adj
.c("scary","intelligent","new")
nouns
using the storage arrow
and code below.c("bugs", "beings", "houses")
paste()
function is useful for combining character strings.
After completing the above parts, run the following:paste(adj, nouns)
iris
is a built-in R object (that means you have it in your
environment even if it doesn’t show it). Determine the class
and
structure (str
) of the iris
object.
Run the code below to create a quick visual of this dataset. Note
that R is determining what to do with the plot()
function based on
the object given to it!
plot(iris)