Created
August 15, 2019 16:19
-
-
Save bfatemi/843ccbec766986bbd519a7855d3277f1 to your computer and use it in GitHub Desktop.
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
library(rstudioapi) | |
# insert text at the start of the document | |
insertText(c(1, 1), "# Hello\n") | |
# insert text at the end of the document | |
insertText(Inf, "# Hello\n") | |
# comment out the first 5 rows | |
pos <- Map(c, 1:5, 1) | |
insertText(pos, "# ") | |
# uncomment the first 5 rows, undoing the previous action | |
rng <- Map(c, Map(c, 1:5, 1), Map(c, 1:5, 3)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment