DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

R Reference: Vectors

Quick reference for Vectors.

Read time: 1 min Words: 14
My Progress

R Reference — Vectors

Quick summary of Vectors with syntax and example.

Syntax

x <- c(...)

Example

x <- c(1,2,3,4)
mean(x)