Closed vijayhrdm closed 3 years ago
ssm_analyze(data,scales = V1:V8, angles = c(15,45,75,105,135,165,195,225,255,285,315,345))
Error in UseMethod("select") : no applicable method for 'select' applied to an object of class "c('matrix', 'array', 'integer', 'numeric')" In addition: Warning message: select_() is deprecated as of dplyr 0.7.0. Please use select() instead.
select_()
select()
It was my mistake. The class of my data object was matrix whereas it should have been data frame.
ssm_analyze(data,scales = V1:V8, angles = c(15,45,75,105,135,165,195,225,255,285,315,345))
Error in UseMethod("select") : no applicable method for 'select' applied to an object of class "c('matrix', 'array', 'integer', 'numeric')" In addition: Warning message:
select_()
is deprecated as of dplyr 0.7.0. Please useselect()
instead.