Unable to find an inherited method for function

library(dplyr)
library(conflicted)

##############################

有些方法,譬如select ,会报错 :Unable to find an inherited method for function ‘select’ for signature ‘“data.frame”’

这是因为不同的包之间关于select方法有冲突

library(conflicted) 可以清楚的告诉你是哪些包之间有冲突

你可以用 包的名字::方法名字 来解决这个问题 如: dplyr::select

你可能感兴趣的:(生物信息)