Skip to contents

[Stable]

This function converts various objects to a data frame.

Usage

# S3 method for class 'character'
fortify_data_frame(data, ..., data_arg = caller_arg(data), call = NULL)

# S3 method for class 'numeric'
fortify_data_frame(data, ..., data_arg = caller_arg(data), call = NULL)

# S3 method for class 'logical'
fortify_data_frame(data, ..., data_arg = caller_arg(data), call = NULL)

# S3 method for class 'complex'
fortify_data_frame(data, ..., data_arg = caller_arg(data), call = NULL)

Arguments

data

An object to be converted to a data frame.

...

These dots are for future extensions and must be empty.

data_arg

The argument name for data. Developers can use it to improve messages. Not used by the user.

call

The execution environment where data and other arguments for the method are collected, e.g., caller_env(). Developers can use it to improve messages. Not used by the user.

Value

A data frame with following columns:

  • .names: the names for the vector (only applicable if names exist).

  • value: the actual value of the vector.