View source: R/sample_int_linter.R
sample_int_linter | R Documentation |
sample.int()
is preferable to sample()
for the case of sampling numbers
between 1 and n
. sample
calls sample.int()
"under the hood".
sample_int_linter()
efficiency, readability, robustness
linters for a complete list of linters available in lintr.
# will produce lints
lint(
text = "sample(1:10, 2)",
linters = sample_int_linter()
)
lint(
text = "sample(seq(4), 2)",
linters = sample_int_linter()
)
lint(
text = "sample(seq_len(8), 2)",
linters = sample_int_linter()
)
# okay
lint(
text = "sample(seq(1, 5, by = 2), 2)",
linters = sample_int_linter()
)
lint(
text = "sample(letters, 2)",
linters = sample_int_linter()
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.