Created
March 1, 2019 00:29
-
-
Save Shians/f06256769077f4debe59121997db4cc4 to your computer and use it in GitHub Desktop.
Function to search google from R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # search google for query | |
| google <- function(query) { | |
| browseURL(glue::glue("https://www.google.com/search?q={URLencode(query)}")) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment