View source: R/dataframe_to_text.R
dataframe_to_text | R Documentation |
This function takes a dataframe as input and converts it to a text representation.
dataframe_to_text(dataframe)
dataframe |
A dataframe to be converted. |
A character vector representing the dataframe in text format.
dataframe <- data.frame(
Name = c("John", "Alice", "Bob"),
Age = c(25, 30, 22),
Score = c(95, 88, 75)
)
dataframe_to_text(dataframe)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.