View source: R/list2df_linter.R
list2df_linter | R Documentation |
data.frame()
to create a data.frame from a listlist2DF()
is the preferred way to turn a list of columns into a data.frame.
Note that it doesn't support recycling; if that's required, use data.frame()
.
list2df_linter()
efficiency, readability
linters for a complete list of linters available in lintr.
# will produce lints
lint(
text = "do.call(cbind.data.frame, x)",
linters = list2df_linter()
)
lint(
text = "do.call('cbind.data.frame', x)",
linters = list2df_linter()
)
lint(
text = "do.call(cbind.data.frame, list(a = 1, b = 1:10))",
linters = list2df_linter()
)
# okay
lint(
text = "list2df(x)",
linters = list2df_linter()
)
lint(
text = "data.frame(list(a = 1, b = 1:10))",
linters = list2df_linter()
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.