Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.01 KB

reference.md

File metadata and controls

48 lines (33 loc) · 1.01 KB
layout
reference

Compendium of functions

to be added...

Useful keyboard shortcuts

  • Assignment operator <-: Alt + - (PC); + - (Mac)
  • Run line of code: Ctrl + Enter
  • Pipe %>%: Ctrl + Shift + M

Glossary

{:auto_ids} Arguments (functions) : ...

Assignment operator : the assignment operator in R is <-

Comment : Comments are preceded by # symbol and are used to add information to your code. Your comments could describe the objective of a particular piece of code.

Data frame : This is the basic type of object in R that stores tabular data. A tibble is a variant of this type of object.

Function : ...

Object : ...

Vector : One of the basic types of object in R. The word vector refers to atomic vectors, which are one-dimensional collections of values. They are created with the c() function.

R projects : ...

Working directory : ...

{% include links.md %}