最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

r - Error: object ‘isFALSE’ is not exported by 'namespace:xfun' when running anything in a .Rmd file - Stack Ove

programmeradmin3浏览0评论
# The following is fictional enrollment data for different majors in a liberal arts college
enrollment <- c(100, 250, 45, 95, 400)
major <- c("Political Science", "Math", "Anthropology", "Geography", "Economics")

Error: object ‘isFALSE’ is not exported by 'namespace:xfun'

Has anyone experienced this before? Every time I try this happens, regardless of what the contents of the chunk I am running are.

I tried many different notebooks running an Rmd file, but every time it did not work.

# The following is fictional enrollment data for different majors in a liberal arts college
enrollment <- c(100, 250, 45, 95, 400)
major <- c("Political Science", "Math", "Anthropology", "Geography", "Economics")

Error: object ‘isFALSE’ is not exported by 'namespace:xfun'

Has anyone experienced this before? Every time I try this happens, regardless of what the contents of the chunk I am running are.

I tried many different notebooks running an Rmd file, but every time it did not work.

Share Improve this question edited Feb 15 at 6:44 Phil 8,1173 gold badges40 silver badges76 bronze badges asked Feb 15 at 1:01 William HarrisWilliam Harris 31 silver badge1 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 1

You need to update your packages.

Searching the text of your error leads to this blog entry by the creator of the knitr package that has a longer explanation, but the lead is:

You probably came to this blog post due to an error related to xfun::isFALSE(), and I strongly recommend that you update all your R packages: update.packages(ask = FALSE, checkBuilt = TRUE) That’s because the error is most likely to be from one of your outdated packages.

发布评论

评论列表(0)

  1. 暂无评论