get_community_data()

get_community_data R Documentation

Get Community Data

Description

Processes a data frame containing community data and extracts the relevant columns, unnesting the ‘data_community’ column in the process.

Usage

get_community_data(data = NULL)

Arguments

data

A data frame. Must contain the columns ‘dataset_name’ and ‘data_community’.

Details

Validates that the input is a data frame, ensures the presence of the ‘dataset_name’ and ‘data_community’ columns, selects those columns, and unnests the ‘data_community’ column.

Value

A data frame with the ‘dataset_name’ and unnested ‘data_community’ columns.

Back to top