Basic R
CALCULATOR
+, -, *, /Use ^ for raise to a power, function sqrt() for square root, abs() for absolute value.
VARIABLES
#assign value to variable:
x<-sqrt(4)
#you can use a variable to build a new variable:
y<-x+5
VECTORS (1)
Vector = elements of th...
massyfigini.hashnode.dev4 min read