Defunct as of rlang 0.3.0 and mutate_impl
I am trying to use the following function but every time I do, I receive the error below. I tried installing an older version of rlang as it works on a different R Studio but I was unable to do that. It seems the error is due to the 0.3.0 version. Any suggestions on how to fix this error would be appreciated.
details2 <-
details %>%
mutate(rownames=rownames(.)) %>%
filter(isdir==FALSE) %>%
arrange(desc(ctime))
Error in mutate_impl(.data, dots) :
Evaluation error: `as_dictionary()` is defunct as of rlang 0.3.0.
Please use `as_data_pronoun()` instead.
r rlang
add a comment |
I am trying to use the following function but every time I do, I receive the error below. I tried installing an older version of rlang as it works on a different R Studio but I was unable to do that. It seems the error is due to the 0.3.0 version. Any suggestions on how to fix this error would be appreciated.
details2 <-
details %>%
mutate(rownames=rownames(.)) %>%
filter(isdir==FALSE) %>%
arrange(desc(ctime))
Error in mutate_impl(.data, dots) :
Evaluation error: `as_dictionary()` is defunct as of rlang 0.3.0.
Please use `as_data_pronoun()` instead.
r rlang
add a comment |
I am trying to use the following function but every time I do, I receive the error below. I tried installing an older version of rlang as it works on a different R Studio but I was unable to do that. It seems the error is due to the 0.3.0 version. Any suggestions on how to fix this error would be appreciated.
details2 <-
details %>%
mutate(rownames=rownames(.)) %>%
filter(isdir==FALSE) %>%
arrange(desc(ctime))
Error in mutate_impl(.data, dots) :
Evaluation error: `as_dictionary()` is defunct as of rlang 0.3.0.
Please use `as_data_pronoun()` instead.
r rlang
I am trying to use the following function but every time I do, I receive the error below. I tried installing an older version of rlang as it works on a different R Studio but I was unable to do that. It seems the error is due to the 0.3.0 version. Any suggestions on how to fix this error would be appreciated.
details2 <-
details %>%
mutate(rownames=rownames(.)) %>%
filter(isdir==FALSE) %>%
arrange(desc(ctime))
Error in mutate_impl(.data, dots) :
Evaluation error: `as_dictionary()` is defunct as of rlang 0.3.0.
Please use `as_data_pronoun()` instead.
r rlang
r rlang
edited Oct 24 '18 at 5:24
sbha
2,11221923
2,11221923
asked Oct 23 '18 at 20:10
eyama
8315
8315
add a comment |
add a comment |
7 Answers
7
active
oldest
votes
To solve this issue within a docker container, I ended up having to use devtools::install_version(..., dep = FALSE) to install an older version of rlang and manually install all dependencies for the packages I needed like dplyr.
Simply installing dplyr will install (or update) to the most recent version of rlang which released 0.3.0 on 2018-10-22 according to CRAN. Although I haven't figured out what changed with rlang and as_dictionary, this is a current workaround.
Although this was a pain, it did work.
To find all imports for a particular package you can use as.data.frame(installed.packages()) and filter for the specific package name you are interested in. The column name is Imports.
Edit:
Although I have not tested it myself, another solution I found online is to upgrade dplyr to 0.7.7.
Thank you, Ryan!
– eyama
Oct 24 '18 at 17:38
I did not understand how to use your solution. I updated tidyverse Today and everything became a complete mess in my code :(
– JPV
Oct 25 '18 at 23:50
I have the same problem :( which version of rlang did you use? thanks!
– Ferand Dalatieh
Oct 30 '18 at 13:34
I ended up using version0.1.6and didn't have any issues Additional documentation on the0.3.0update can be found here cran.r-project.org/web/packages/rlang/news/news.html
– Ryan Angi
Nov 1 '18 at 10:30
add a comment |
I think the problem may come from incompatible package versions. You can try with:
update.packages(ask = FALSE, checkBuilt = TRUE)
If it doesn't work, reinstalling all packages the problem may disappear (code from here):
package_df <- as.data.frame(installed.packages())
package_list <- as.character(package_df$Package)
install.packages(package_list)
1
Have you tried working with this solution? It appears not to e working on my side
– Confusion Matrix
Nov 8 '18 at 9:41
1
This worked on my computer. It took awhile because of the number of packages I have.
– user41509
Nov 13 '18 at 18:58
@ConfusionMatrix it worked in my case. The fact is that reinstalling all packages the incompatibilities between package versions were fixed. That was the reason in my case.
– garciparedes
Nov 18 '18 at 9:30
1
@garciparedes it worked but I did something else in addition to what you suggested. I had to manually update some packages to avoid conflicts.
– Confusion Matrix
Nov 22 '18 at 6:46
add a comment |
What worked for me (though to be honest I don't fully understand why):
1) Delete the rlang folder from the computer (on Windows: R/win-library/3.4)
2) install.packages("dplyr")
In the two cases where I encountered this problem, the system was operating on R 3.4 with Windows. It's possible that the R3.4/Windows had something to do with it.
1
On ubuntu 16, R. 3.4.4. Just updating dplyr withinstall.packages("dplyr")fixed it for me. I did not delete the rlang folder.
– Ott Toomet
Nov 5 '18 at 22:35
I do not have a "win-lib" folder in my R folder... anywhere else it might be?
– triSaratops
Nov 9 '18 at 20:32
It's actually win-library (sorry about the mistake). I'll update my original response to reflect that. You can check where your packages are installed by runningpath.package("PKG_NAME")
– Mirabilis
Nov 10 '18 at 21:06
add a comment |
Problem happened after installing new version of RStudio-1.2.1114.exe
To solve this problem I just had to install package 'dplyr' again
install.packages("dplyr")
add a comment |
I temporarily solved the problem via downgrading rlang.
require(devtools)
install_version("rlang", version = "x.x.x", repos = "http://cran.us.r-project.org")
x.x.x: the version you need
I just realize that "dplyr" has fixed the issue after version 0.7.4.
add a comment |
For what it's worth, it worked for me by doing this:
- having dplyr version 0.7.8
- having rlang version 0.3.0.9000
I have R version 3.4.3 and using Rstudio version 1.1.456.
add a comment |
Try the following command:
This will bring rlang to version 0.2.1
Post this you will be able to run the command.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52957136%2fdefunct-as-of-rlang-0-3-0-and-mutate-impl%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
To solve this issue within a docker container, I ended up having to use devtools::install_version(..., dep = FALSE) to install an older version of rlang and manually install all dependencies for the packages I needed like dplyr.
Simply installing dplyr will install (or update) to the most recent version of rlang which released 0.3.0 on 2018-10-22 according to CRAN. Although I haven't figured out what changed with rlang and as_dictionary, this is a current workaround.
Although this was a pain, it did work.
To find all imports for a particular package you can use as.data.frame(installed.packages()) and filter for the specific package name you are interested in. The column name is Imports.
Edit:
Although I have not tested it myself, another solution I found online is to upgrade dplyr to 0.7.7.
Thank you, Ryan!
– eyama
Oct 24 '18 at 17:38
I did not understand how to use your solution. I updated tidyverse Today and everything became a complete mess in my code :(
– JPV
Oct 25 '18 at 23:50
I have the same problem :( which version of rlang did you use? thanks!
– Ferand Dalatieh
Oct 30 '18 at 13:34
I ended up using version0.1.6and didn't have any issues Additional documentation on the0.3.0update can be found here cran.r-project.org/web/packages/rlang/news/news.html
– Ryan Angi
Nov 1 '18 at 10:30
add a comment |
To solve this issue within a docker container, I ended up having to use devtools::install_version(..., dep = FALSE) to install an older version of rlang and manually install all dependencies for the packages I needed like dplyr.
Simply installing dplyr will install (or update) to the most recent version of rlang which released 0.3.0 on 2018-10-22 according to CRAN. Although I haven't figured out what changed with rlang and as_dictionary, this is a current workaround.
Although this was a pain, it did work.
To find all imports for a particular package you can use as.data.frame(installed.packages()) and filter for the specific package name you are interested in. The column name is Imports.
Edit:
Although I have not tested it myself, another solution I found online is to upgrade dplyr to 0.7.7.
Thank you, Ryan!
– eyama
Oct 24 '18 at 17:38
I did not understand how to use your solution. I updated tidyverse Today and everything became a complete mess in my code :(
– JPV
Oct 25 '18 at 23:50
I have the same problem :( which version of rlang did you use? thanks!
– Ferand Dalatieh
Oct 30 '18 at 13:34
I ended up using version0.1.6and didn't have any issues Additional documentation on the0.3.0update can be found here cran.r-project.org/web/packages/rlang/news/news.html
– Ryan Angi
Nov 1 '18 at 10:30
add a comment |
To solve this issue within a docker container, I ended up having to use devtools::install_version(..., dep = FALSE) to install an older version of rlang and manually install all dependencies for the packages I needed like dplyr.
Simply installing dplyr will install (or update) to the most recent version of rlang which released 0.3.0 on 2018-10-22 according to CRAN. Although I haven't figured out what changed with rlang and as_dictionary, this is a current workaround.
Although this was a pain, it did work.
To find all imports for a particular package you can use as.data.frame(installed.packages()) and filter for the specific package name you are interested in. The column name is Imports.
Edit:
Although I have not tested it myself, another solution I found online is to upgrade dplyr to 0.7.7.
To solve this issue within a docker container, I ended up having to use devtools::install_version(..., dep = FALSE) to install an older version of rlang and manually install all dependencies for the packages I needed like dplyr.
Simply installing dplyr will install (or update) to the most recent version of rlang which released 0.3.0 on 2018-10-22 according to CRAN. Although I haven't figured out what changed with rlang and as_dictionary, this is a current workaround.
Although this was a pain, it did work.
To find all imports for a particular package you can use as.data.frame(installed.packages()) and filter for the specific package name you are interested in. The column name is Imports.
Edit:
Although I have not tested it myself, another solution I found online is to upgrade dplyr to 0.7.7.
edited Nov 1 '18 at 12:05
answered Oct 24 '18 at 13:01
Ryan Angi
8614
8614
Thank you, Ryan!
– eyama
Oct 24 '18 at 17:38
I did not understand how to use your solution. I updated tidyverse Today and everything became a complete mess in my code :(
– JPV
Oct 25 '18 at 23:50
I have the same problem :( which version of rlang did you use? thanks!
– Ferand Dalatieh
Oct 30 '18 at 13:34
I ended up using version0.1.6and didn't have any issues Additional documentation on the0.3.0update can be found here cran.r-project.org/web/packages/rlang/news/news.html
– Ryan Angi
Nov 1 '18 at 10:30
add a comment |
Thank you, Ryan!
– eyama
Oct 24 '18 at 17:38
I did not understand how to use your solution. I updated tidyverse Today and everything became a complete mess in my code :(
– JPV
Oct 25 '18 at 23:50
I have the same problem :( which version of rlang did you use? thanks!
– Ferand Dalatieh
Oct 30 '18 at 13:34
I ended up using version0.1.6and didn't have any issues Additional documentation on the0.3.0update can be found here cran.r-project.org/web/packages/rlang/news/news.html
– Ryan Angi
Nov 1 '18 at 10:30
Thank you, Ryan!
– eyama
Oct 24 '18 at 17:38
Thank you, Ryan!
– eyama
Oct 24 '18 at 17:38
I did not understand how to use your solution. I updated tidyverse Today and everything became a complete mess in my code :(
– JPV
Oct 25 '18 at 23:50
I did not understand how to use your solution. I updated tidyverse Today and everything became a complete mess in my code :(
– JPV
Oct 25 '18 at 23:50
I have the same problem :( which version of rlang did you use? thanks!
– Ferand Dalatieh
Oct 30 '18 at 13:34
I have the same problem :( which version of rlang did you use? thanks!
– Ferand Dalatieh
Oct 30 '18 at 13:34
I ended up using version
0.1.6 and didn't have any issues Additional documentation on the 0.3.0 update can be found here cran.r-project.org/web/packages/rlang/news/news.html– Ryan Angi
Nov 1 '18 at 10:30
I ended up using version
0.1.6 and didn't have any issues Additional documentation on the 0.3.0 update can be found here cran.r-project.org/web/packages/rlang/news/news.html– Ryan Angi
Nov 1 '18 at 10:30
add a comment |
I think the problem may come from incompatible package versions. You can try with:
update.packages(ask = FALSE, checkBuilt = TRUE)
If it doesn't work, reinstalling all packages the problem may disappear (code from here):
package_df <- as.data.frame(installed.packages())
package_list <- as.character(package_df$Package)
install.packages(package_list)
1
Have you tried working with this solution? It appears not to e working on my side
– Confusion Matrix
Nov 8 '18 at 9:41
1
This worked on my computer. It took awhile because of the number of packages I have.
– user41509
Nov 13 '18 at 18:58
@ConfusionMatrix it worked in my case. The fact is that reinstalling all packages the incompatibilities between package versions were fixed. That was the reason in my case.
– garciparedes
Nov 18 '18 at 9:30
1
@garciparedes it worked but I did something else in addition to what you suggested. I had to manually update some packages to avoid conflicts.
– Confusion Matrix
Nov 22 '18 at 6:46
add a comment |
I think the problem may come from incompatible package versions. You can try with:
update.packages(ask = FALSE, checkBuilt = TRUE)
If it doesn't work, reinstalling all packages the problem may disappear (code from here):
package_df <- as.data.frame(installed.packages())
package_list <- as.character(package_df$Package)
install.packages(package_list)
1
Have you tried working with this solution? It appears not to e working on my side
– Confusion Matrix
Nov 8 '18 at 9:41
1
This worked on my computer. It took awhile because of the number of packages I have.
– user41509
Nov 13 '18 at 18:58
@ConfusionMatrix it worked in my case. The fact is that reinstalling all packages the incompatibilities between package versions were fixed. That was the reason in my case.
– garciparedes
Nov 18 '18 at 9:30
1
@garciparedes it worked but I did something else in addition to what you suggested. I had to manually update some packages to avoid conflicts.
– Confusion Matrix
Nov 22 '18 at 6:46
add a comment |
I think the problem may come from incompatible package versions. You can try with:
update.packages(ask = FALSE, checkBuilt = TRUE)
If it doesn't work, reinstalling all packages the problem may disappear (code from here):
package_df <- as.data.frame(installed.packages())
package_list <- as.character(package_df$Package)
install.packages(package_list)
I think the problem may come from incompatible package versions. You can try with:
update.packages(ask = FALSE, checkBuilt = TRUE)
If it doesn't work, reinstalling all packages the problem may disappear (code from here):
package_df <- as.data.frame(installed.packages())
package_list <- as.character(package_df$Package)
install.packages(package_list)
edited Oct 23 '18 at 21:31
answered Oct 23 '18 at 20:44
garciparedes
80211019
80211019
1
Have you tried working with this solution? It appears not to e working on my side
– Confusion Matrix
Nov 8 '18 at 9:41
1
This worked on my computer. It took awhile because of the number of packages I have.
– user41509
Nov 13 '18 at 18:58
@ConfusionMatrix it worked in my case. The fact is that reinstalling all packages the incompatibilities between package versions were fixed. That was the reason in my case.
– garciparedes
Nov 18 '18 at 9:30
1
@garciparedes it worked but I did something else in addition to what you suggested. I had to manually update some packages to avoid conflicts.
– Confusion Matrix
Nov 22 '18 at 6:46
add a comment |
1
Have you tried working with this solution? It appears not to e working on my side
– Confusion Matrix
Nov 8 '18 at 9:41
1
This worked on my computer. It took awhile because of the number of packages I have.
– user41509
Nov 13 '18 at 18:58
@ConfusionMatrix it worked in my case. The fact is that reinstalling all packages the incompatibilities between package versions were fixed. That was the reason in my case.
– garciparedes
Nov 18 '18 at 9:30
1
@garciparedes it worked but I did something else in addition to what you suggested. I had to manually update some packages to avoid conflicts.
– Confusion Matrix
Nov 22 '18 at 6:46
1
1
Have you tried working with this solution? It appears not to e working on my side
– Confusion Matrix
Nov 8 '18 at 9:41
Have you tried working with this solution? It appears not to e working on my side
– Confusion Matrix
Nov 8 '18 at 9:41
1
1
This worked on my computer. It took awhile because of the number of packages I have.
– user41509
Nov 13 '18 at 18:58
This worked on my computer. It took awhile because of the number of packages I have.
– user41509
Nov 13 '18 at 18:58
@ConfusionMatrix it worked in my case. The fact is that reinstalling all packages the incompatibilities between package versions were fixed. That was the reason in my case.
– garciparedes
Nov 18 '18 at 9:30
@ConfusionMatrix it worked in my case. The fact is that reinstalling all packages the incompatibilities between package versions were fixed. That was the reason in my case.
– garciparedes
Nov 18 '18 at 9:30
1
1
@garciparedes it worked but I did something else in addition to what you suggested. I had to manually update some packages to avoid conflicts.
– Confusion Matrix
Nov 22 '18 at 6:46
@garciparedes it worked but I did something else in addition to what you suggested. I had to manually update some packages to avoid conflicts.
– Confusion Matrix
Nov 22 '18 at 6:46
add a comment |
What worked for me (though to be honest I don't fully understand why):
1) Delete the rlang folder from the computer (on Windows: R/win-library/3.4)
2) install.packages("dplyr")
In the two cases where I encountered this problem, the system was operating on R 3.4 with Windows. It's possible that the R3.4/Windows had something to do with it.
1
On ubuntu 16, R. 3.4.4. Just updating dplyr withinstall.packages("dplyr")fixed it for me. I did not delete the rlang folder.
– Ott Toomet
Nov 5 '18 at 22:35
I do not have a "win-lib" folder in my R folder... anywhere else it might be?
– triSaratops
Nov 9 '18 at 20:32
It's actually win-library (sorry about the mistake). I'll update my original response to reflect that. You can check where your packages are installed by runningpath.package("PKG_NAME")
– Mirabilis
Nov 10 '18 at 21:06
add a comment |
What worked for me (though to be honest I don't fully understand why):
1) Delete the rlang folder from the computer (on Windows: R/win-library/3.4)
2) install.packages("dplyr")
In the two cases where I encountered this problem, the system was operating on R 3.4 with Windows. It's possible that the R3.4/Windows had something to do with it.
1
On ubuntu 16, R. 3.4.4. Just updating dplyr withinstall.packages("dplyr")fixed it for me. I did not delete the rlang folder.
– Ott Toomet
Nov 5 '18 at 22:35
I do not have a "win-lib" folder in my R folder... anywhere else it might be?
– triSaratops
Nov 9 '18 at 20:32
It's actually win-library (sorry about the mistake). I'll update my original response to reflect that. You can check where your packages are installed by runningpath.package("PKG_NAME")
– Mirabilis
Nov 10 '18 at 21:06
add a comment |
What worked for me (though to be honest I don't fully understand why):
1) Delete the rlang folder from the computer (on Windows: R/win-library/3.4)
2) install.packages("dplyr")
In the two cases where I encountered this problem, the system was operating on R 3.4 with Windows. It's possible that the R3.4/Windows had something to do with it.
What worked for me (though to be honest I don't fully understand why):
1) Delete the rlang folder from the computer (on Windows: R/win-library/3.4)
2) install.packages("dplyr")
In the two cases where I encountered this problem, the system was operating on R 3.4 with Windows. It's possible that the R3.4/Windows had something to do with it.
edited Nov 10 '18 at 21:06
answered Nov 3 '18 at 10:24
Mirabilis
1484
1484
1
On ubuntu 16, R. 3.4.4. Just updating dplyr withinstall.packages("dplyr")fixed it for me. I did not delete the rlang folder.
– Ott Toomet
Nov 5 '18 at 22:35
I do not have a "win-lib" folder in my R folder... anywhere else it might be?
– triSaratops
Nov 9 '18 at 20:32
It's actually win-library (sorry about the mistake). I'll update my original response to reflect that. You can check where your packages are installed by runningpath.package("PKG_NAME")
– Mirabilis
Nov 10 '18 at 21:06
add a comment |
1
On ubuntu 16, R. 3.4.4. Just updating dplyr withinstall.packages("dplyr")fixed it for me. I did not delete the rlang folder.
– Ott Toomet
Nov 5 '18 at 22:35
I do not have a "win-lib" folder in my R folder... anywhere else it might be?
– triSaratops
Nov 9 '18 at 20:32
It's actually win-library (sorry about the mistake). I'll update my original response to reflect that. You can check where your packages are installed by runningpath.package("PKG_NAME")
– Mirabilis
Nov 10 '18 at 21:06
1
1
On ubuntu 16, R. 3.4.4. Just updating dplyr with
install.packages("dplyr") fixed it for me. I did not delete the rlang folder.– Ott Toomet
Nov 5 '18 at 22:35
On ubuntu 16, R. 3.4.4. Just updating dplyr with
install.packages("dplyr") fixed it for me. I did not delete the rlang folder.– Ott Toomet
Nov 5 '18 at 22:35
I do not have a "win-lib" folder in my R folder... anywhere else it might be?
– triSaratops
Nov 9 '18 at 20:32
I do not have a "win-lib" folder in my R folder... anywhere else it might be?
– triSaratops
Nov 9 '18 at 20:32
It's actually win-library (sorry about the mistake). I'll update my original response to reflect that. You can check where your packages are installed by running
path.package("PKG_NAME")– Mirabilis
Nov 10 '18 at 21:06
It's actually win-library (sorry about the mistake). I'll update my original response to reflect that. You can check where your packages are installed by running
path.package("PKG_NAME")– Mirabilis
Nov 10 '18 at 21:06
add a comment |
Problem happened after installing new version of RStudio-1.2.1114.exe
To solve this problem I just had to install package 'dplyr' again
install.packages("dplyr")
add a comment |
Problem happened after installing new version of RStudio-1.2.1114.exe
To solve this problem I just had to install package 'dplyr' again
install.packages("dplyr")
add a comment |
Problem happened after installing new version of RStudio-1.2.1114.exe
To solve this problem I just had to install package 'dplyr' again
install.packages("dplyr")
Problem happened after installing new version of RStudio-1.2.1114.exe
To solve this problem I just had to install package 'dplyr' again
install.packages("dplyr")
answered Nov 16 '18 at 19:52
vlad1490
364
364
add a comment |
add a comment |
I temporarily solved the problem via downgrading rlang.
require(devtools)
install_version("rlang", version = "x.x.x", repos = "http://cran.us.r-project.org")
x.x.x: the version you need
I just realize that "dplyr" has fixed the issue after version 0.7.4.
add a comment |
I temporarily solved the problem via downgrading rlang.
require(devtools)
install_version("rlang", version = "x.x.x", repos = "http://cran.us.r-project.org")
x.x.x: the version you need
I just realize that "dplyr" has fixed the issue after version 0.7.4.
add a comment |
I temporarily solved the problem via downgrading rlang.
require(devtools)
install_version("rlang", version = "x.x.x", repos = "http://cran.us.r-project.org")
x.x.x: the version you need
I just realize that "dplyr" has fixed the issue after version 0.7.4.
I temporarily solved the problem via downgrading rlang.
require(devtools)
install_version("rlang", version = "x.x.x", repos = "http://cran.us.r-project.org")
x.x.x: the version you need
I just realize that "dplyr" has fixed the issue after version 0.7.4.
edited Nov 23 '18 at 2:55
answered Nov 22 '18 at 9:01
X. Xi
83
83
add a comment |
add a comment |
For what it's worth, it worked for me by doing this:
- having dplyr version 0.7.8
- having rlang version 0.3.0.9000
I have R version 3.4.3 and using Rstudio version 1.1.456.
add a comment |
For what it's worth, it worked for me by doing this:
- having dplyr version 0.7.8
- having rlang version 0.3.0.9000
I have R version 3.4.3 and using Rstudio version 1.1.456.
add a comment |
For what it's worth, it worked for me by doing this:
- having dplyr version 0.7.8
- having rlang version 0.3.0.9000
I have R version 3.4.3 and using Rstudio version 1.1.456.
For what it's worth, it worked for me by doing this:
- having dplyr version 0.7.8
- having rlang version 0.3.0.9000
I have R version 3.4.3 and using Rstudio version 1.1.456.
answered Dec 3 '18 at 22:29
skhan8
814
814
add a comment |
add a comment |
Try the following command:
This will bring rlang to version 0.2.1
Post this you will be able to run the command.
add a comment |
Try the following command:
This will bring rlang to version 0.2.1
Post this you will be able to run the command.
add a comment |
Try the following command:
This will bring rlang to version 0.2.1
Post this you will be able to run the command.
Try the following command:
This will bring rlang to version 0.2.1
Post this you will be able to run the command.
answered Nov 21 '18 at 14:32
Ankit Tanmay Mishra
91
91
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52957136%2fdefunct-as-of-rlang-0-3-0-and-mutate-impl%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown