R Language: A Quick Reference Guide – IV

R Quick Reference Guide

Quick Reference Quide R Language

R language: A Quick Reference Guide about learning R Programming with a short description of the widely used commands. It will help the learner and intermediate user of the R Programming Language to get help with different functions quickly. This Quick Reference is classified into different groups. Let us start with R Language: A Quick Reference – IV.

This Quick Reference will help in performing different descriptive statistics on vectors, matrices, lists, data frames, arrays, and factors.

Basic Descriptive Statistics in R Language

The following is the list of widely used functions that are further helpful in computing descriptive statistics. The functions below are not direct descriptive statistics functions, however, these functions are helpful to compute other descriptive statistics.

R CommandShort Description
sum(x1, x2, … , xn)Computes the sum/total of $n$ numeric values given as argument
prod(x1, x2, … , xn)Computes the product of all $n$ numeric values given as argument
min(x1, x2, … , xn)Gives smallest of all $n$ values given as argument
max(x1, x2, …, xn)Gives largest of all $n$ values given as argument
range(x1, x2, … , xn)Gives both the smallest and largest of all $n$ values given as argument
pmin(x1, x2, …)Returns minima of the input values
pmax(x1, x2, …)Returns maxima of the input values

Statistical Descriptive Statistics in R Language

The following functions are used to compute measures of central tendency, measures of dispersion, and measures of positions.

R CommandShort Description
mean(x)Computes the arithmetic mean of all elements in $x$
sd(x)Computes the standard deviation of all elements in $x$
var(x)Computes the variance of all elements in $x$
median(x)Computes the median of all elements in $x$
quantile(x)Computes the median, quartiles, and extremes in $x$
quantile(x, p)Computes the quantiles specified by $p$

Cumulative Summaries in R Language

The following functions are also helpful in computing the other descriptive calculations.

R CommandShort Description
cumsum(x)Computes the cumulative sum of $x$
cumprod(x)Computes the cumulative product of $x$
cummin(x)Computes the cumulative minimum of $x$
cummax(x)Computes the cumulative maximum of $x$

Sorting and Ordering Elements in R Language

The sorting and ordering functions are useful in especially non-parametric methods.

R CommandShort Description
sort(x)Sort the all elements of $x$ in ascending order
sort(x, decreasing = TRUE)Sor the all elements of $x$ in descending order
rev(x)Reverse the elements in $x$
order(x)Get the ordering permutation of $x$

Sequence and Repetition of Elements in R Language

These functions are used to generate a sequence of numbers or repeat the set of numbers $n$ times.

R CommandShort Description
a:bGenerates a sequence of numbers from $a$ to $b$ in steps of size 1
seq(n)Generates a sequence of numbers from 1 to $n$
seq(a, b)Generates a sequence of numbers from $a$ to $b$ in steps of size 1, it is the same as a:b
seq(a, b, by=s)Generates a sequence of numbers from $a$ to $b$ in steps of size $s$.
seq(a, b, length=n)Generates a sequence of numbers having length $n$ from $a$ to $b$
rep(x, n)Repeats the elements $n$ times
rep(x, each=n)Repeats the elements of $x$, each element is repeated $n$ times
R Quick Reference Guide Frequently Asked Questions About R

R Language: A Quick Reference – I

https://gmstat.com

Important MCQs R Language Quiz 9

The post is about MCQ on R Language Quiz with Answers. The quiz covers the topics related to R Package qqplot, R Studio, and Data.Frame. Let us start with the MCQs R Language Quiz.

Online Multiple Choice Questions about Learning R Programming. It will help the learners to get knowledge of R not only for learning the language but also to get some practices about Statistics with reference to R Programming.

1. Which package is associated with data visualization in R?

 
 
 
 

2. What function can you use to put a text label inside the grid of your plot to call out specific data points?

 
 
 
 

3. What does the data.frame function do in R?

 
 
 
 

4. What is the role of the x argument in the following code?

ggplot(data = diamonds) +
       geom_bar(mapping = aes(x = cut))
 
 
 
 

5. Which of the following is NOT a valid data structure in R?

 
 
 
 

6. Which of the following are the benefits of using ggplot2?

 
 
 
 

7. When creating a plot in ggplot you must set the mapping argument of a function. Which function has the mapping argument?

 
 
 
 

8. What argument of the labs() function can a data analyst use to add text outside of the grid area of a plot?

 
 
 
 

9. In ggplot2, you use the plus sign (+) to add a layer to your plot.

 
 

10. A data analyst is working with the penguin’s data. The analyst creates a scatterplot with the following code:

ggplot(data = penguins) +
       geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g, alpha = species))

What does the alpha aesthetic do to the appearance of the points in the plot?

 
 
 
 

11. Which of the following are operations you can perform in ggplot2?

 
 
 
 

12. Which ggplot function is used to define the mappings of variables to visual representations of data?

 
 
 
 

13. Which of the following are operations you can perform in ggplot2?

 
 
 
 

14. Which of the following aesthetics attributes can you map to the data in a scatterplot?

 
 
 
 

15. The _________ creates a scatterplot and then adds a small amount of random noise to each point in the plot to make the points easier to find.

 
 
 
 

16. Data frames can be converted to a matrix by calling data.

 
 
 
 

17. Which of the following are the benefits of adding labels and annotations to your plot?

 
 
 
 

18. In R studio, what default options does the Export functionality of the Plots tab give for exporting plots?

 
 
 
 

19. What is the purpose of the rep() function in R?

 
 
 
 

20. Which statement about the ggsave() function is correct?

 
 
 
 

MCQs R Language Quiz

  • Which of the following aesthetic attributes can you map to the data in a scatterplot?
  • What is the role of the x argument in the following code?
    ggplot(data = diamonds) +
    geom_bar(mapping = aes(x = cut))
  • Which of the following are the benefits of adding labels and annotations to your plot?
  • What function can you use to put a text label inside the grid of your plot to call out specific data points?
  • Which of the following are operations you can perform in ggplot2?
  • When creating a plot in ggplot you must set the mapping argument of a function. Which function has the mapping argument?
  • Which ggplot function is used to define the mappings of variables to visual representations of data?
  • Which of the following are the benefits of using ggplot2?
  • What argument of the labs() function can a data analyst use to add text outside of the grid area of a plot?
  • Which statement about the ggsave() function is correct?
  • A data analyst is working with the penguin’s data. The analyst creates a scatterplot with the following code:
    ggplot(data = penguins) +
    geom_point(mapping = aes(x = flipper_length_mm, y = body_mass_g, alpha = species))
  • What does the alpha aesthetic do to the appearance of the points in the plot?
  • The ___________ creates a scatterplot and then adds a small amount of random noise to each point in the plot to make the points easier to find.
  • In R studio, what default options does the Export functionality of the Plots tab give for exporting plots?
  • Which of the following are operations you can perform in ggplot2?
  • In ggplot2, you use the plus sign (+) to add a layer to your plot.
  • Which of the following is NOT a valid data structure in R?
  • What is the purpose of the rep() function in R?
  • Which package is associated with data visualization in R?
  • What does the data.frame function do in R?
  • Data frames can be converted to a matrix by calling data.
Frequently Asked Questions About MCQs R Language Quiz

https://itfeature.com

https://gmstat.com

R Language Reference Guide III: A Quick Guide

The post is about the R Language Reference Guide subsetting Vectors, Lists, Matrices, and Data Frames in R Language.

R Language A Quick Reference

R language Reference Guide is about learning R Programming with a short description of the widely used commands. It will help the learner and intermediate user of the R Programming Language to get help with different functions quickly. This R language reference is classified into different groups. Let us start with the R Language Reference Guide – III.

This R Language Quick Reference contains R commands about subsetting in R, such as subsetting of vectors, matrices, lists, data frames, arrays, and factors. It also discusses setting the different properties related to R language data types.

Subsetting Vectors: Quick R Language Reference

The following are ways to subset or slice the values from a vector.

R CommandShort Description
x[1:5]Select elements of $x$ by index
x[-(1:5)]Exclude elements of $x$ by index
x[c(TRUE, FALSE)]Select elements of $x$ corresponding to the True value
x[c(“a”, “b”)]Select elements of $x$ by name

Subsetting Lists in R Language

The following methods are used to subset or slice a list in R Language.

R CommandShort Description
x[1:5]Extracts a sublist of the list $x$
x[-(1:5)]Extract a sublist by excluding elements of list $x$
x[c(TRUE, FALSE)]Extract a sublist with logical subscripts
x[c(“a”, “b”)]Extract a sublist by name
x[[2]]Extract an element of the list $x$
x[[“a”]]Extract the element with the name “a” from list $x$
x$aExtract the element with the name “a” from list $x$

Subsetting Matrices in R: A Quick Reference

To subset or extract certain elements from a matrix follow the ways described below.

R CommandShort Description
x[i, j]Extracts elements of matrix $x$, specified by row $i$ and column $j$
x[i, j] = vSet or rest the elements of matrix $x$, specified by row $i$ and column $j$
x[i, ]Extracts $i$th row of a matrix $x$
x[i, ] = vSet or resets the $i$th row of a matrix $x$ specified by $i$th row
x[ , j]Extracts the $j$ column of a matrix $x$
x[ , j] = vSets or resets the $j$ column of matrix $x$
x[i]Subets a matrix $x$ as a vector
x[i] = vSets or resets the $i$th elements (treated as a vector operation)

Subsetting a Data Frame in R Language

One can easily subset or slice a Data Frame in R.

R CommandShort Description
df[i, j]Matrix subsetting of a data frame, specified by $i$th row and $j$th column
df[i, j] = dfSets or resets a subset of a data frame
subset(df, subset = i)Subset of the $i$ cases/ observations of a data frame
subset(df, select = i)Subset of the $i$ variables/ columns of a data frame
subset(df, subset=i, select=j)Subset of the $i$ cases and $j$ variables of a data frame
R Language Reference Guide

R Language: A Quick Reference – I

https://gmstat.com