When I startup my R (in RStudio IDE), I receive the warning:
Warning: namespace ‘slidify’ is not available and has been replaced by .GlobalEnv when processing object ‘.SLIDIFY_ENV’
Yesterday I uninstalled slidify
(and slidifyLibraries
) as this package interfered with regular use or .Rmd
(Rmarkdown) files (when I pushet knit
button in RStudio, all the .Rmd files were rendered as slidify
slides, despite the fact that they had to be rendered as usual Rmarkdown files).
Question: How can I get rid of the warning message at the startup?
ls(all.names = TRUE)
and discovered, that environment.SLIDIFY_ENV
exists in the workspace.rm(.SLIDIFY_ENV)
worked. Thank you @Yeung – Rijeka