4

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?

2 Answers 2

Reset to default

Trending sort

Trending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers.

It falls back to sorting by highest score if no posts are trending.

7

Warning: namespace ‘slidify’ is not available and has been replaced by .GlobalEnv when processing object ‘.SLIDIFY_ENV’

That is telling you there's an object called .SLIDIFY_ENV in your R workspace at startup which is associated with the now-missing slidify namespace. Remove it (rm(.SLIDIFY_ENV) should work), save your workspace. Restart R and it shouldn't re-occur.

1
  • 1
    I tried ls(all.names = TRUE) and discovered, that environment .SLIDIFY_ENV exists in the workspace. rm(.SLIDIFY_ENV) worked. Thank you @Spacedman
    – GegznaV
    Apr 28, 2016 at 11:17
5

You probably had .RData in your workspace, which contains those variables.

If you remove .RData file, then you will not be going to see the warning message.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.