Skip to content

Instantly share code, notes, and snippets.

@ZeccaLehn
Created December 29, 2014 17:04
Show Gist options
  • Save ZeccaLehn/e09636a67ef381d760eb to your computer and use it in GitHub Desktop.
Save ZeccaLehn/e09636a67ef381d760eb to your computer and use it in GitHub Desktop.
Search R Packages by Letter
#Search installed packages by first letter -- regardless of upper/lower case (by 's' here)
grep("^[s]", attributes(installed.packages())$dimnames[[1]], value = TRUE, ignore.case = TRUE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment