當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R tidyverse tidyverse_conflicts tidyverse 和其他軟件包之間的衝突


該函數列出了 tidyverse 中的包與您已加載的其他包之間的所有衝突。

用法

tidyverse_conflicts(only = NULL)

參數

only

將其設置為字符向量以限製僅與這些包發生衝突。

細節

有四個衝突被故意忽略:來自 dplyr 的 intersectunionsetequalsetdiff 。這些函數使基本等效函數變得通用,因此不會對任何現有代碼產生負麵影響。

例子

tidyverse_conflicts()
#> ── Conflicts ──────────────────────────────────── tidyverse_conflicts() ──
#> ✖ dplyr::filter() masks stats::filter()
#> ✖ dplyr::lag()    masks stats::lag()
#> ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
源代碼:R/conflicts.R

相關用法


注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Conflicts between the tidyverse and other packages。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。