Learn R Programming

surveytable (version 0.9.9)

as.data.frame.surveytable_table: Coerce a surveytable table to a data frame

Description

If a tabulation function produces multiple tables, that group of tables is a list, with each element of the list being an individual table. To convert one of these tables to a data.frame, use [[. For example, in the following code, we generate 3 tables, and then convert the third table to a data.frame.

set_survey(namcs2019sv)
mytables = tab("MDDO", "SPECCAT", "MSA")
mydf = as.data.frame(mytables[[3]])

Usage

# S3 method for surveytable_table
as.data.frame(x, ...)

Value

A data frame.

Arguments

x

a table produced by a tabulation function

...

ignored

Examples

Run this code
set_survey(namcs2019sv)
as.data.frame( tab("AGER") )

Run the code above in your browser using DataLab