rep_len_linter | R Documentation |
rep(x, length.out = n)
calls rep_len(x, n)
"under the hood". The latter
is thus more direct and equally readable.
rep_len_linter()
best_practices, consistency, readability
linters for a complete list of linters available in lintr.
# will produce lints
lint(
text = "rep(1:3, length.out = 10)",
linters = rep_len_linter()
)
# okay
lint(
text = "rep_len(1:3, 10)",
linters = rep_len_linter()
)
lint(
text = "rep(1:3, each = 2L, length.out = 10L)",
linters = rep_len_linter()
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.