使用select函数处理数据的时候出现了这种错误
exprSet <- select(exprSet,-symbol)
>>>Error in (function (classes, fdef, mtable) : unable to find an inherited method for function ‘select’ for signature ‘"data.frame"’
解决办法
exprSet <- dplyr::select(exprSet,-symbol)
使用select函数处理数据的时候出现了这种错误
exprSet <- select(exprSet,-symbol)
>>>Error in (function (classes, fdef, mtable) : unable to find an inherited method for function ‘select’ for signature ‘"data.frame"’
解决办法
exprSet <- dplyr::select(exprSet,-symbol)