Control Structures in R

The post is about different control structures in R Language. In R there are different control structures to control the flow or execution of the program. The control function usually makes use of if statements or their different flavors to control the code based on condition(s). On the other hand, one can repeat some desired task in sequence or based on conditions such as repeated sampling or simulation can be performed using loops such as for loop.

Control Structures in R Language

What is a Control Structure in R?

R language has some standard control structures. Many R expressions/ statements (or code blocks) can be enclosed within braces { }. Control structures define the flow of the program. However, it is more efficient to use built-in functions rather than control structures whenever possible. These allow us to control the flow of execution of a script typically inside of a function.

How many Control Statements are in R Language?

There are eight control statements in R language.

Name all of the Control Statements in R

The names of the control statements in R language are:

  • if
  • if-else
  • for
  • nested loops
  • while
  • repeat and break
  • next
  • return

In general, one can say that there are two types of control structures.

  • Conditional statements (if, if-else, elif, and switch statement)
  • Loops (for loop, while loop, and repeat)

What is “if” control statement in R Language?

The if statements are used when a certain condition is TRUE to perform a specific task. The syntax of an if statement is

if (test expression or condition){
  statement(s)
}

How if statements work, consider the following a simple example

x <- 1:20
if (sample(x, 1) <= 10){
  print("Sampled x is less than 10")
}

From the above example, if the randomly sampled value is less than 10, then the output of the code will be “Sampled x is less than 10”, otherwise nothing will be displayed on the screen as no else is utilized here.

What is a loop in R Language?

A loop is a way to repeat a sequence of instructions/commands under certain conditions. The loops allow us to automate parts of our code that require repetition.

What does mean by the term “Dreaded for Loop”?

In R language, many questions arose about how to accomplish different tasks without the use of a for loop. This is a situation of “Dreaded for Loop”. It is usually desired as programmers try to avoid loops at all costs to speed up their code.

Give an Example of “Dreaded for Loop”

The simplest example of “Dreaded for loop” is the use of vectorization. The vectorization in R speeds up some computation, compared to the use of loops. For example, if x and y are vectors of equal lengths, one can add/sum them as

# Vectorization
x <- 1:5
y <- 5:1
z <- x + y
print(z)


# Using for loop
for (i in length(x)){
 z[i] <- x[i] + y[i]
}
print(z)
Control Structures in R Language

The addition of element-wise values of the $x$ and $y$ vectors is much faster than adding/summing using loops. Note that the use of vectorization also helps the programmers to write shorter, simpler, safer, and faster code.

What is the Purpose of Using the next statement in R?

One can use the next statement if, in a loop, the programmer/ developer wants to skip the current iteration without terminating it loop.

Statistics and Data Analysis

MCQs Shiny App Quiz Questions 21

The post is about Shiny app Quiz Questions. There are 20 multiple-choice questions about R Language and Shiny App. Let us start with MCQs Shiny App Quiz Questions with Answers now.

MCQs Shiny App Quiz Questions

Online MCQs Shiny App Quiz Questions

1. What are the two main differences between an R Markdown document and a Shiny dashboard? MCQs in Statistics

 
 
 
 

2. Which function creates an empty layout?

 
 
 
 

3. Which two components of a dashboard happen on the front end?

 
 
 
 

4. If you have the command plotOutput(“plot_histogram”) in the UI-side code in your Shiny application, what is the name of the variable that you assign the plot to in the server-side code?

 
 
 
 

5. Which deployment method should you select for your Shiny app if you do not want to run your server? Computer MCQs Test

 
 
 
 

6. Which function adds a title to a fluidPage layout?

 
 
 
 

7. Which of the following is a true statement about functions found in the Shiny library?

 
 
 
 

8. Can you publish a Shiny app to your shinyapps.io account from RStudio?

 
 
 
 

9. You use the Layout functions to organize —————- containing user interface elements in the application.

 
 
 
 

10. Which is the preferred method for creating a Shiny app?

 
 
 

11. A Shiny app consists of two parts, the server that the user interacts with and the UI that powers the app.

 
 

12. In a Shiny application, where do you add input widgets?

 
 
 
 

13. Which statement best describes the varSelectInput() function?

 
 
 
 

14. Which of the following is NOT a parameter to the varSelectInput() function?

 
 
 
 

15. When defining the server logic for a Shiny app, you define a function that includes which of the following parameters?

 
 
 
 

16. which function is used to construct an initial empty UI when creating a Shiny app?

 
 
 
 

17. Which two components of a dashboard happen on the back end?

 
 
 
 

18. You must include the shinyApp() function in the code for all Shiny apps.

 
 
 
 

Online MCQs Shiny App Quiz Questions

  • Which two components of a dashboard happen on the back end?
  • Which is the preferred method for creating a Shiny app?
  • You must include the shinyApp() function in the code for all Shiny apps.
  • Which function creates an empty layout?
  • If you have the command plotOutput(“plot_histogram”) in the UI-side code in your Shiny application, what is the name of the variable that you assign the plot to in the server-side code?
  • Can you publish a Shiny app to your shinyapps.io account from RStudio?
  • In a Shiny application, where do you add input widgets?
  • Which deployment method should you select for your Shiny app if you do not want to run your server? Computer MCQs Test
  • What are the two main differences between an R Markdown document and a Shiny dashboard? MCQs in Statistics
  • A Shiny app consists of two parts, the server that the user interacts with and the UI that powers the app.
  • Which two components of a dashboard happen on the front end?
  • You use the Layout functions to organize —————- containing user interface elements in the application.
  • When defining the server logic for a Shiny app, you define a function that includes which of the following parameters?
  • Which of the following is a true statement about functions found in the Shiny library?
  • which function is used to construct an initial empty UI when creating a Shiny app?
  • Which of the following is NOT a parameter to the varSelectInput() function?
  • Which function adds a title to a fluidPage layout?
  • Which statement best describes the varSelectInput() function?

MCQs in Statistics

R Language Basic Questions

The post is about some R Language Basic Questions. The questions are related to the use of R Language, some preliminaries in R, the Use of Rstudio, R Commander, some functions in R, etc.

R Language Basic Questions

What is Rstudio and how to use it?

The Rstudio is software used as an editor for writing R and other Language-related programming codes. To use Rstudio, follow the steps:

Step 1: Download and Install Rstudio
Step 2: Open Rstudio
Sep 3: Click on the menu: File -> New -> R Script
Step 4: Paste the R code (write it) in the new source code area. Running the R program on the command line or elsewhere will start the console. One can paste the R code in the R Console or editor area.
Step 5: Click the “Source” button above the code area.

One can also use the console in Rstudio. If a user clicks “Run” instead of “Source” user input might not work properly. One can use the R documentation.

What are Preliminaries in R?

The following are some preliminaries in R Language:

  • R is a case-sensitive language
  • # is the comment tag
  • R is installed with the default library (also called packages). One can add/import extra packages to the library using the command library().
  • To use a library function one must load it first into the memory using the command load().
  • Variable names in R language cannot start with “.” (dot), “+” (plus sign), or “=” (minus sign).

Explain What is R

R is a data analysis software that is used by analysts, quants, statisticians, data scientists, and others. R Language is a leading tool for statistics, machine learning, and data analysis. It allows for the easy creation of objects, functions, and packages.

List out some of the functions that the R Language Provides

The following is a short list of functions that R provides:

  • mean()
  • median()
  • var()
  • lm()
  • summary()
  • print()
  • glm()
  • plot()

Explain How One Can Start the R Commander GUI

To start the R Commander, type the command, library(Rcmdr) into the R console. Note that one must first install the Rcmdr package.

install.packages("Rcmdr")
# Start the R Commander GUI
library(Rcmdr)

What is R Software for Statistics and Data Analysis

R is an open-source programming language. It is a software environment for statistical computing and graphics techniques. The R language is widely used by statisticians and data miners for developing statistical software/packages and performing data analysis.

What is Mean in R?

The mean is the average of the numbers: a calculated “central” value of a set of numbers. To calculate the mean of a data set, add up all the numbers, then divide by how many numbers there are. In R, one can do this by using the command:

x = c(1, 2, 4, 7, 8, 9, 4, 8)
mean(x)
R Language Basic Questions, R FAQs

What is the Median in R?

The Median is the “middle” of a sorted list of numbers. For an even amount of numbers, things are slightly different. In the case of an even number of observations, one can find the middle pair of numbers, and then find the average of these two middlemost numbers. The median can be computed in R by using the command:

x = c(1, 2, 4, 7, 8, 9, 4, 8)
median(x)

Note that R itself decides about a number of observations either there are even or odd number of observations.

Statistics for Data Analysts