R Basics; Descriptive Statistics
September 10, 2024
+
+
:+
tells you that R is waiting for more input; it doesn’t think you’re done yet.A function can take any number and type of input parameters and return any number and type of output results.
R ships a vast number of built-in functions.
R also allows a user to define a new function.
We will mostly use built-in functions.
library(tidyverse)
# The function `str_c()`, provided by `tidyverse`, concatenates characters.
str_c("Data", "Analytics")
str_c("Data", "Analytics", sep = "!")
We invoke a function by entering its name and a pair of opening and closing parentheses.
Much as a cooking recipe can accept ingredients, a function invocation can accept inputs called arguments.
We pass arguments sequentially inside the parentheses (, separated by commas).
A parameter is a name given to an expected function argument.
A default argument is a fallback value that R passes to a parameter if the function invocation does not explicitly provide one.
All of the basic operators with parentheses we see in mathematics are available to use.
R can be used for a wide range of mathematical calculations.
abs(x)
: the absolute value \(|x|\)sqrt(x)
: the square root \(\sqrt{x}\)exp(x)
: the exponential value \(e^x\), where \(e = 2.718...\)log(x)
: the natural logarithm \(\log_{e}(x)\), or simply \(\log(x)\)