Top Answers to R Interview Questions

CTA

R is an open-source programming language that is used for a variety of tasks and operations, including data visualization, statistical analysis, forecast analysis, predictive modeling, data manipulations, etc. This language is used in all major organizations, such as Facebook, Google, Twitter, etc. This R Interview Questions and Answers blog comprises the frequently asked questions that you are most likely to encounter during job interviews. Following are a few of the most important R Programming interview questions that you must prepare for:

Q1. Compare R & Python
Q2. Explain the data import in R language.
Q3. Explain how to communicate the outputs of data analysis using R language.
Q4. Difference between library () and require () functions in R language.
Q5. What is R?
Q6. How R commands are written?
Q7. What is t-tests() in R?
Q8. What are the disadvantages of R Programming?
Q9. What is the use of With () and By () function in R?
Q10. In R programming, how missing values are represented?

This R Interview Questions blog can be largely divided into the following three categories:
1. Basic

2. Intermediate

3. Advanced

Check out this R Programming Interview Questions And Answers Video on YouTube:

Basic R Interview Questions

1. Compare R & Python

R  programming Language Python programming language
Model Building is similar to Python Model Building is similar to R.
Model Interpretability is good Model Interpretability is not good
Production is not better than Python. Production is good
R has good community support over Python. Community Support  is not better than R
Data Science Libraries are same as Python. Data Science Libraries are same as R.
R has good data visualizations libraries and tools Data visualization is not better than R
R has a steep learning curve. Learning Curve in Python is easier than learning R.

2. Explain the data import in R language.

R provides import of data in the R language. To begin with the R commander GUI, user should type the commands in the command Rcmdr into the console. Data can be imported in R language in 3 ways such as:

  • Select the data set in the dialog box or enter the name of the data set as required.
  • Data is entered directly using the editor of R Commander via Data->New Data Set. This works good only when the data set is not too large.
  • Data can also be imported from a URL or from plain text file (ASCII), or from any statistical package or from the clipboard.
  • We can also import data with the help of path by using either single front slash “/” or double backslash “\\”

3. Explain how to communicate the outputs of data analysis using R language.

Combining the data, code and analysis results in a single document using knitr for Reproducible research done. Helps to verify the findings, add to them and engage in conversations. Reproducible research makes it easy to redo the experiments by inserting new data values and applying it to different various problems.

4. Difference between library () and require () functions in R language.

library() require()
Library () function gives an error message display, if the desired package cannot be loaded. Require () function is used inside function and throws a warning messages whenever a particular package is not Found
It loads the packages whether it is already loaded or not, It just checks that it is loaded, or loads it if it isn’t (use in functions that rely on a certain package). The documentation explicitly states that neither function will reload an already loaded package.

Consider a related program for the above differentiation.

if(!require(package, character.only=T, quietly=T)) {

install.packages (package)

library(package, character.only=T)

}

For multiple packages you can use

for(package in c('', '')) {

if(!require(package, character.only=T, quietly=T)) {

install.packages (package)

library(package, character.only=T)

}

}

5. What is R?

R is a programming language which is used for developing statistical software and data analysis. It is being increasingly deployed for machine learning applications as well.

Get 100% Hike!

Master Most in Demand Skills Now !

6. How are commands in R written?

By using # at the starting of the line of code like #division commands are written.

7. What is t-tests() in R?

It is used to determine if the means of two groups are equal or not by using the t.test() function.

T test

8. What are the disadvantages of R Programming?

The disadvantages are:-

  • Lack of standard GUI
  •  Not good for big data.
  •  Does not provide spreadsheet view of data.

9. What is the use of with() and by() functions in R?

with() function applies an expression to a dataset.

#with(data,expression)

By() function applies a function t each level of a factors.

#by(data,factorlist,function)

10. In R programming, how are missing values represented?

In R missing values are represented by NA(Not available) which should be in capital letters. And some values for example the values that are divisible by zero are represented by NAN (Not a number)

11. What is the use of subset() and sample() functions in R?

Subset() is used to select the variables and observations and sample() function is used to generate a random sample of the size n from a dataset.

12. Explain what is transpose.

Transpose is used for reshaping of the data which is used for analysis. Transpose is performed by t(). Here is an example of data in the form of matrix and its transpose:

Transpose of Data

13. What are the advantages of R?

  • The advantages are:-
  • It is used for managing and manipulating of data.
  • No license restrictions
  • Free and open source software.
  • Graphical capabilities of R are good.
  • Runs on many Operating system and different hardware and also run on 32 & 64 bit processors etc.

Now that you are aware of the benefits of R programming, to know more check out R Course.

14. What is the function used for adding datasets in R?

For adding two datasets the rbind() function is used but the column of two datasets must be the same.

CSV File Addition

Syntax: rbind(x1,x2……) where x1,x2: vector, matrix, data frames.

15. How you can produce co-relations and covariances?

Cor-relations are produced by cor() and covariances are produced by cov() function.

16. What is difference between matrix and dataframes?

Dataframe can contain different types of data but matrices can contain only similar type of data. Here are the different types of data structures in R:

Dataframe & Matrix

Career Transition

Intellipaat Job Guarantee Review | Intellipaat Job Assistance Review | Data Engineer Course
Got Job Promotion After Completing Artificial Intelligence Course - Intellipaat Review | Gaurav
How Can A Non Technical Person Become Data Scientist | Intellipaat Review - Melvin
Artificial Intelligence Course | Career Transition to Machine Learning Engineer - Intellipaat Review
Non Tech to Data Scientist Career Transition | Data Science Course Review - Intellipaat

17. What is the difference between lapply() and sapply()?

lapply() is used to show the output in the form of list whereas sapply() is used to show the output in the form of vector or data frame

18. What is the difference between seq(4) and seq_along(4)?

Seq(4) means vector from 1 to 4 (c(1,2,3,4)) whereas seq_along(4) means a vector of length(4) or 1(c(1)).

19. Explain how you can start the R commander GUI.

rcmdr command is used to start the R commander GUI.

20. What is the memory limit of R?

In 32 bit system memory limit is 3Gb but most versions limited to 2Gb and in 64 bit system memory limit is 8Tb.

Check out this Data Science Interview Questions video by Intellipaat:

21. How many data structures R has?

There are 5 data structures in R i.e. vector, matrix, array which are of a homogenous type and the other two are list and data frame which are heterogeneous.

Data Structure in R

Learn more about data structure in the R programming tutorial.

22. Explain how data is aggregated in R.

There are two methods that is collapsing data by using one or more BY variable and other is aggregate() function in which BY variable should be in list.

23. How many sorting algorithms are available?

There are 5 types of sorting algorithms are used which are:-

  • Bubble Sort
  • Selection Sort
  • Merge Sort
  • Quick Sort
  • Bucket Sort

24. How to create new variables in R programming?

For creating new variable assignment operator ‘<-’ is used
For e.g. mydata$sum <- mydata$x1 + mydata$x2

25. What are R packages?

Packages are the collections of data, R functions and compiled code in a well-defined format and these packages are stored in the library. One of the strengths of R is the user-written function in R language.

R Package

26. What is the workspace in R?

Workspace is the current R working environment which includes any user defined objects like vector, lists etc.

27. What is the function which is used for merging of data frames horizontally in R?

Merge()function is used to merge two data frames

Eg. Sum<-merge(data frame1,data frame 2,by=’ID’)

28. What is the function which is used for merging data frames vertically in R?

rbind() function is used to merge two data frames vertically.

Eg. Sum <- rbind(data frame1,data frame 2)

29. What is power analysis?

It is used for experimental design .It is used to determine the effect of given sample size.

Power Analysis In R

30. Which package is used for power analysis in R?

Pwr package is used for power analysis in R.

Intermediate R Interview Questions

31. Which method is used for exporting the data in R?

There are many ways to export the data into other formats like SPSS, SAS, Stata, Excel Spreadsheet.

32. Which packages are used for exporting data?

For excel xlsReadWrite package is used and for sas,spss ,stata foreign package is implemented.

33. How impossible values are represented in R?

In R NaN (not a number) is used to represent impossible values.

34. Which command is used for storing R objects into a file?

Save command is used for storing R objects into a file.

Syntax: >save(z,file=”z.Rdata”)

35. Which command is used for restoring an R object from a file?

load command is used for storing R objects from a file.

Syntax: >load(”z.Rdata”)

36. What is the use of a coin package in R?

Coin package is used to achieve the re randomization or permutation based statistical tests.

37. Which function is used for sorting in R?

order() function is used to perform the sorting.

38. What is the use of tapply()?

IOS-6.1.3

39. What happens when the application object does not handle an event?

The event will be dispatched to your delegate for processing.

40. Explain app specific objects which store the app contents.

The app specific objects are Data model objects that store the app’s contents.

41. Explain the purpose of using UIWindow objects?

UIWindow object coordinates the one or more views presenting on the screen.

UIWindow in R

42. Tell me the super class of all view controller objects.

UIView Controller class.

43. How to create axes in the graph?

Using axes() function custom axes are created.

44. What is the use of abline function?

abline() function is to add the reference line to a graph.

Syntax: abline(h=yvalues, v=xvalues)

45. Why is the vcd package used?

vcd package provides different methods for visualizing multivariate categorical data.

46. What is GGobi?

GGobi is an open-source program for data visualization for exploring high dimensional typed data.

47. What are iPlots?

It is a package which provide bar plots, mosaic plots, box plots, parallel plots, scatter plots and histograms.

IPlots

48. What is the use of a lattice package?

The lattice package is to improve on base R graphics by giving better defaults and it has the ability to easily display multivariate relationships.

49. What is the fitdistr() function?

It is used to provide the maximum likelihood fitting of univariate distributions. It is defined under the MASS package.

50. Which data structures are used to perform statistical analysis and create graphs.

Data structures are vectors, arrays, data frames and matrices.

51. What is the use of sink() function?

It defines the direction of output.

52. Why is the library() function used?

This function is used to show the packages which are installed.

53. Why is the search() function used?

By this function we see which packages are currently loaded.

54. On which type of data binary operators are worked?

Binary operators work on matrices, vectors and scalars.

55. What is the use of the doBY package?

It is used to define the desired table using function and model formula.

56. Which function is used to create a frequency table?

Frequency table is created by the table() function.

57. Define loglm() function.

Loglm() function is used to create log-linear models.

Become a Data Science Architect IBM

58. What is the use of the corrgram() function?

corrgram() function is used to plot correlograms.

Corrgram

59. How to create scatterplot matrices?

Pair() or splom() function is used to create scatterplot matrices.

60. What is npmc?

It is a package which gives nonparametric multiple comparisons.

Advanced R Interview Questions

61. What is the use of diagnostic plots?

It is used to check the normality, heteroscedasticity and influential observations.

Diagnostic Graphs

62. Define anova() function.

anova() is used to compare the nested models.

63. What is cv.lm() function?

It is defined under the DAAG package which is used for k-fold validation.

64. Define stepAIC() function.

It is define under the MASS package which performs stepwise model selection under exact AIC.

65. Define leaps().

It is used to perform the all-subsets regression and it is defined under the leaps package.

66. Define relaimpo package.

It is used to measure the relative importance of each of the predictor in the model.

67. Why is a car package used?

It provide a variety of regression including scatter plots, variable plots and it also enhanced diagnostic.

68. Define a robust package.

It provides a library of robust methods including regression.

69. What is robustbase?

It is a package which provides basic robust statistics including model selection methods.

70. Define plotmeans().

It is defined under the gplots package which includes confidence intervals and it produces a mean plot for single factors.

71. What is the full form of MANOVA?

MANOVA stands for multivariate analysis of variance.

72. What is the use of MANOVA?

By using MANOVA we can test more than one dependent variable simultaneously.

Manova in R

73. Define mshapiro.test( ).

It is a function which is defined in the mvnormtest package. It produces the Shapiro-wilk test for multivariate normality.

74. Define barlett.test().

Barlett.test() is used to provide a parametric k-sample test of the equality of variances.

75. What is fligner.test()?

It is a function which provides a non-parametric k sample test of the equality of variances.

76. Define hovplot().

It is defined in the HH package which provides a graphic test of homogeneity of variance based on brown forsyth.

77. Which variables are represented by lower case letters?

Numerical variables are represented by lower case letters.

78. Which variables are represented by upper case letters?

Categorical factors are represented by upper case letters.

Check out the blog on why to learn R programming.

79. What is logistic regression?

Logistic regression is used to predict the binary outcome from the given set of continuous predictor variables.

Logistic Regression

80. Define Poisson regression.

It is used to predict the outcome variable which represents counts from the given set of continuous predictor variable.

Poisson Regression

81. Define Survival analysis.

It includes a number of techniques which are used for modeling the time to an event.

82. What is the use of the survfit() function?

It estimates a survival distribution one or more groups.

83. Define survdiff().

It determines the differences in survival distribution between two or more groups.

84. What is coxph()?

It is a function which is used to model the hazard function on the set of predictor variable.

85. In which package survival analysis is defined?

Survival analysis is defined under the survival package.

86. What is the use of the MASS package?

MASS functions include those functions which performs linear and quadratic discriminant function analysis.

87. Define qda().

qda() prints a quadratic discriminant function.

88. Define lda().

lda() is used to print the discriminant functions which is based on centered variable.

89. What is the use of the forecast package?

It provides the functions which are used for automatic selection of ARIMA and exponential models.

Forecast Package

90. Define auto.arima().

It is used to handle the seasonal as well as non-seasonal ARIMA models.

91. What is the principal() function?

It is defined in the psych package which is used to rotate and extract the principal components.

92. What is FactoMineR?

It is a package which includes quantitative and qualitative variables. It also includes supplementary variables and observations.

93. What is the full form of CFA?

CFA stands for Confirmatory Factor Analysis.

94. What is the use of boot.sem() function?

It is used to bootstrap the structural equation model.

95. What is the full form of SEM?

SEM stands for Structural Equation Modeling.

96. Which function performs classical multidimensional scaling?

cmdscale() function is used to perform classical multidimensional scaling.

97. Define isoMDS().

This function is defined under the MASS package which performs nonmetric multidimensional scaling.

98. Which function perform individual difference scaling?

It is done by indscal() function.

99. What is the pvclust() function ?

It comes under the pvclust package which provides p-values for hierarchical clustering.

100. Define cluster.stats() ?

It is define in fpc package which provide a method for comparing the similarity of two clusters solution using different validation criteria.

Cluster Stats

101. What we use party package?

It is used to provide a non-parametric regression for ordinal data, nominal, censored and multivariate responses.

102. Which package provide the bootstrapping?

boot package is used which provide bootstrapping.

103. Define MATLAB package.

Matlab package includes those wrapper functions and variable which are used to replicate matlab function calls.

104. What is the of use Matrix package?

Matrix package includes those function which support sparse and dense matrices like Lapack, BLAS etc.

R programming

Course Schedule

Name Date Details
Data Science Course 23 Mar 2024(Sat-Sun) Weekend Batch
View Details
Data Science Course 30 Mar 2024(Sat-Sun) Weekend Batch
View Details
Data Science Course 06 Apr 2024(Sat-Sun) Weekend Batch
View Details