Hi, I am getting this error trying to select columns 1 to 105 (R 4.0) ..... what's wrong ?
tabla = select(limites_tabla_fis, 1:105)
Error in select(limites_tabla_fis, 1:105) : unused argument (1:105)
Hi, I am getting this error trying to select columns 1 to 105 (R 4.0) ..... what's wrong ?
tabla = select(limites_tabla_fis, 1:105)
Error in select(limites_tabla_fis, 1:105) : unused argument (1:105)
If limites_tabla_fis is a dataframe, why not just limites_tabla_fis[1:105]?
Regarding the error, are you actually using the select function from dplyr? Can you check whether you are using the one in MASS by chance or not?
hi, ...from dplyr, not using MASS..
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.