Learn R Programming

lintr (version 3.3.0-1)

list2df_linter: Recommend direct usage of data.frame() to create a data.frame from a list

Description

base::list2DF() 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().

Usage

list2df_linter()

Arguments

Tags

efficiency, readability

See Also

linters for a complete list of linters available in lintr.

Examples

Run this code
# 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()
)

Run the code above in your browser using DataLab