Can you describe how you would create and use a function in R?

  • Define the function using def func_name() {}, Use the function using func_name()
  • Define the function using func_name <- function() {}, Use the function using func_name()
  • Define the function using func_name = function() {}, Use the function using func_name
  • None of the above
Functions in R are created using the 'function()' keyword. You can assign the function to a variable using '<-'. For instance, 'func_name <- function() { ... }' defines a function. You can then use this function by calling 'func_name()'.

Can you create multiple plots in a single figure in R?

  • No, R only allows one plot per figure
  • Yes, by using the par() function
  • Yes, by using the mfrow() function
  • Yes, by using the plot() function multiple times
Yes, you can create multiple plots in a single figure in R by using the par() function. By setting the appropriate parameters in par(), such as mfrow or mfcol, you can arrange multiple plots in a grid layout within a single figure.

What does the "mode" function in R return?

  • The data type of an object
  • The mode of a numeric vector
  • The most frequent value in a numeric vector
  • The central tendency measure of a numeric vector
The "mode" function in R returns the data type of an object. It is used to determine the mode of the object, which represents its data type.

Can you describe a scenario where you would need to use a data frame in R?

  • Analyzing survey responses with multiple variables
  • Calculating mathematical operations with arrays
  • Plotting a scatterplot with matrices
  • Storing character strings with vectors
A common scenario where you would need to use a data frame in R is when analyzing survey responses. Each column in the data frame can represent a different question, and each row represents a respondent's answer. This allows for easy manipulation, analysis, and visualization of survey data.

How do you declare a global variable in R?

  • By assigning a value to a variable outside of any function
  • By using the global() function to mark a variable as global
  • By using the global_var() keyword before variable declaration
  • All variables in R are global by default
In R, a global variable is declared by assigning a value to a variable outside of any function. By assigning a value to a variable in the global environment, it becomes a global variable that can be accessed from anywhere in the program.

Can you describe a scenario where you would need to calculate the mode of a character vector in R?

  • Analyzing survey responses to identify the most common answer
  • Determining the most frequent word in a text document
  • Identifying the most frequent category in a dataset
  • All of the above
All of the mentioned scenarios may require calculating the mode of a character vector in R. For example, when analyzing survey responses, it's useful to identify the most common answer. Similarly, in text analysis or analyzing categorical data, determining the most frequent word or category can provide valuable insights.

What function is commonly used to calculate the percentile in R?

  • quantile()
  • median()
  • mean()
  • mode()
The quantile() function in R is commonly used to calculate percentiles. It allows you to specify the desired percentile or multiple percentiles, providing flexibility in obtaining various percentile values from a numeric vector or data set.

Can you create a stacked bar chart in R?

  • Yes, by providing a matrix of numeric values as input
  • No, R only supports basic bar charts
  • Yes, but it requires creating separate bar charts and stacking them manually
  • Yes, by using the stack() parameter in the barplot() function
Yes, you can create a stacked bar chart in R by providing a matrix of numeric values as input to the barplot() function. Each column of the matrix represents a separate category, and the values within the columns determine the height of the stacked bars.

How would you handle missing values when finding the max or min value in R?

  • Use the na.rm = TRUE parameter in the max() or min() function
  • Exclude missing values from the vector before using the max() or min() function
  • Treat missing values as 0 when finding the max() or min() value
  • All of the above
When finding the max or min value in R, you can handle missing values by using the na.rm = TRUE parameter in the max() or min() function. Setting na.rm = TRUE instructs R to ignore missing values and calculate the max or min based on the available non-missing values.

What are some strategies for handling grouped and stacked bar charts in R?

  • Use different colors for each group or stack
  • Add labels or legends to identify each group or stack
  • Adjust the bar width to avoid overlapping
  • All of the above
All of the mentioned strategies can be used for handling grouped and stacked bar charts in R. Using different colors for each group or stack enhances differentiation. Adding labels or legends helps identify each group or stack. Adjusting the bar width prevents overlapping when multiple bars are grouped or stacked. The specific strategy chosen depends on the data and the visualization goals.