Learn R Programming

TheOpenAIR (version 0.1.0)

df_to_csv: Convert a data.frame to a CSV-formatted character string

Description

The `df_to_csv` function takes a data.frame as input and returns a character string representing the content of the original data.frame formatted as a CSV file. The resulting CSV-formatted string can be written to a file or further processed as needed.

Usage

df_to_csv(df)

Value

A character string representing the data values in the input data.frame formatted as a CSV file.

Arguments

df

A data.frame to be converted to a CSV-formatted character string.

Examples

Run this code
# Create a data.frame
example_data <- data.frame(
  Name = c("Alice", "Bob", "Carol"),
  Age = c(30, 25, 28),
  Height = c(168, 175, 162),
  stringsAsFactors = FALSE
)

# Convert the data.frame to a CSV-formatted character string
csv_string <- df_to_csv(example_data)
cat(csv_string)

Run the code above in your browser using DataLab