Show Menu
Cheatography

R Cheat Sheet (DRAFT) by

Cheatsheet for R Programming

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Arithmetic

5 + 5
Addition
5 - 5
Subtra­ction
3 * 5
Multip­lic­ation
(5 + 5) / 2
Division
2^5
Expone­nti­ation
28 %% 6
Modulo

Variable Assignment

x <- 42
When printing out an assigned variable R will not generate any output because R assumes that you will be needing this variable in the future.

Variable Assignment