You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running R version 4.1.1 with dplyr version 1.0.9 installed. The example code included in the rename function does not seem to work.
Brief description of the problem
iris<- as_tibble(iris) # so it prints a little nicer
rename(iris, petal_length=Petal.Length)
Errorin rename(iris, petal_length=Petal.Length) :object'Petal.Length'notfound
The text was updated successfully, but these errors were encountered:
Could you please rework your reproducible example to use the reprex package ? That makes it easier to see both the input and the output, formatted in such a way that I can easily re-run in a local session.
iris <- as_tibble(iris) # so it prints a little nicer
rename(iris, petal_length = Petal.Length)
Error: object 'Petal.Length' not found
R version 4.3.0 with dplyr version 1.1.4
conflicted::conflict_scout()
36 conflicts
• rename(): S4Vectors and dplyr
I find it and that is ......
I am running R version 4.1.1 with dplyr version 1.0.9 installed. The example code included in the rename function does not seem to work.
Brief description of the problem
The text was updated successfully, but these errors were encountered: