Can't able to use the function "fractions"
As in this tutorial we install packages but functions are still showing the error that this function is could not be found
R Introduction-to-RStudio 08-09 min 10-20 sec
Answers:
Installing and calling packages are two different things in R. First you need to install a package if it is not in R library using "install.packages" function. Then in order to use its functions, you need to call the package or initialize the package using "library" function as "library(name_of_the_package)". You have either not installed the package or not have used the library function.