noFactorDataFrame | R Documentation |
Use data.frame
with stringsAsFactors = FALSE
noFactorDataFrame(...)
... |
passed to |
# data.frame() by default converts character to factor
str(data.frame(id = 1:3, letter = LETTERS[1:3]))
# noFactorDataFrame keeps character as character
str(noFactorDataFrame(id = 1:3, letter = LETTERS[1:3]))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.