hi everyone I am learning R
I have a problem In Rstudio I install packages when the time comes to use them I have to specify them
for example skimr::skim_without_charts(penguins),
janitor::clean_names(penguins)
how can I use them without specifying the packages name first
for example skim_without_charts(penguins), or
clean_names(penguins)
Load the package so that the functions can be called without the namespace :: by using the library()
function.
I.e.
library(skimr)
1 Like
thanks, it very helpful
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.