
The “read.csv” Function in R
To read a comma-separated values (CSV) file into a data frame.
The “qqline” Function in R
To add a line to a quantile-quantile (Q-Q) plot, typically used to compare the distribution of a dataset against a theoretical distribution (e.g. normal distribution).
The “qqplot” Function in R
To create a quantile-quantile (Q-Q) plot for visualizing the distribution of a dataset against a theoretical distribution (e.g., normal distribution).
The “qqnorm” Function in R
To create a quantile-quantile (Q-Q) plot for visualizing the distribution of a dataset against a theoretical normal distribution.
The “str_sort” Function in R
To sort a character vector based on the lexicographic order of its elements.
The “str_order” Function in R
To order a character vector based on the lexicographic order of its elements.
The “str_to_upper” Function in R
To convert the characters in a character vector to uppercase.
The “str_to_lower” Function in R
To convert the characters in a character vector to lowercase.
The “str_sub” Function in R
To extract a substring from each element of a character vector based on position.
The “str_locate_all” Function in R
To locate the position of all occurrences of a pattern in each element of a character vector.
The “str_locate” Function in R
To locate the position of the first occurrence of a pattern in each element of a character vector.
The “str_extract_all” Function in R
To extract all occurrences of a pattern in each element of a character vector.
The “str_extract” Function in R
To extract the first occurrence of a pattern in each element of a character vector.