What are the rules for naming variables in R?

  • Can start with a number, Can contain special characters, Case-insensitive
  • Can start with a number, Cannot contain special characters, Case-insensitive
  • Cannot start with a number, Can contain special characters, Case-sensitive
  • Cannot start with a number, Cannot contain special characters, Case-sensitive
Variables in R should start with a letter, and can contain letters, numbers, period (.) and underscore (_). Variable names in R are also case sensitive, so "mydata" and "MyData" would refer to different variables.

Suppose you're writing a function in R that simulates a random process many times. How would you use a for loop to accomplish this?

  • for (i in 1:n_simulations) { simulate_one_iteration() }
  • for (i in 1:n_simulations) { simulate(i) }
  • simulate(n_simulations)
  • for (simulation in n_simulations) { simulate_one_iteration() }
To simulate a random process many times using a for loop, you can iterate from 1 to the desired number of simulations (n_simulations), and within each iteration, call a function simulate_one_iteration() that performs one simulation of the random process. This allows you to repeat the simulation process the desired number of times.

Can you nest if statements in R?

  • Yes, if statements can be nested inside other if or if-else statements
  • No, R does not allow nested if statements
  • Yes, but only one level of nesting is allowed in R
  • Yes, but the nesting level is limited to two levels in R
Yes, if statements can be nested inside other if or if-else statements in R. This allows for more complex conditional logic by evaluating multiple conditions within a single if statement.

How do you create a vector in R?

  • array() function
  • list() function
  • matrix() function
  • vector() function
In R, vectors are created using the "vector()" function or the "c()" function, which is more commonly used. For example, c(1, 2, 3) creates a numeric vector with elements 1, 2, and 3.

What function is commonly used to view the structure of a data frame in R?

  • str()
  • summary()
  • view()
  • head()
The str() function is commonly used to view the structure of a data frame in R. The str() function displays a concise summary of the structure of the data frame, including the variable names, data types, and a preview of the data.

Can you describe a scenario where you would need to use an array in R?

  • Storing multi-dimensional data, such as time series or image data
  • Performing multi-dimensional calculations, such as tensor operations
  • Representing complex data structures with multiple dimensions
  • All of the above
Arrays in R are particularly useful when dealing with multi-dimensional data, such as time series, image data, or any data that requires representation in multiple dimensions. They allow for efficient storage, manipulation, and analysis of complex data structures. Arrays enable performing calculations and operations that involve multiple dimensions, providing a powerful tool for data analysis and modeling.

R is a programming language and software environment primarily used for _________ computing and graphics.

  • Functional
  • Object-Oriented
  • Procedural
  • Statistical
R is primarily used for statistical computing and creating graphics. Its purpose is to provide a wide variety of statistical and graphical techniques, which are highly extensible.

How would you customize the appearance of an R pie chart, including changing colors, labels, and legend?

  • By using the col parameter to change segment colors
  • By using the labels parameter to add segment labels
  • By using the legend() function
  • All of the above
To customize the appearance of an R pie chart, you can use the col parameter to change segment colors, the labels parameter to add segment labels, and the legend() function to add a legend. These options allow you to customize the colors, labels, and the legend to suit your visualization needs.

The ______ function in R returns the mode of an object, which is its data type.

  • mode()
  • typeof()
  • class()
  • str()
The typeof() function in R returns the mode of an object, which represents its data type. It is used to determine the data type of the object.

How would you calculate a running median in R?

  • Use the runMedian() function from the caTools package
  • Use the rollapply() function from the zoo package
  • Use the cummedian() function from the stats package
  • Use the median() function with a sliding window approach
To calculate a running median in R, you can use the rollapply() function from the zoo package. The rollapply() function allows you to specify a window size and apply a function (such as median()) to a rolling window of values. This can be useful for analyzing time series or other sequential data.