January 2019
Beginner to intermediate
352 pages
9h 8m
English
This chapter covers
So far we’ve only dealt with single-valued variables, but it’s highly unlikely that your data looks so simple. You need a way to combine values into groups of data that together represent some larger concept. There are many ways to do this in R, and the way you store collections of data can impact how you interact with it later, so let’s see some of the different ways to combine data.
The simplest way to group together values is with the function c(). Feel free to refer to this function however you like, but ...