What is the difference between library() and require() functions in r language?
Answer / Sheetal Kumari
The R programming language provides two ways to load packages: library() and require(). The main difference lies in how they handle errors. library() does not produce an error when a package is not found, it simply returns NULL. On the other hand, require() produces an error if the package is not found, which can be useful for scripting since scripts should generally fail fast rather than continue with unavailable packages.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how to save graphs in R?
How would you facet the data using ggplot2 package?
What is functional programming and memory issues in on the performance basis?
Explain how R programming applied to the real world?
What do copy-on-change issues in r?
What is a file in r?
What are R Functions?
How would you create a scatterplot using ggplot2 package?
What is the difference between a bar-chart and a histogram? Where would you use a bar-chart and where would you use a histogram?
How would you create a box-plot using “plotly”?
Why we need data visualization in R?
What is data mining and what data miners do in R?