Learn R Programming

bidux (version 0.3.3)

new_user_personas: Create user personas tibble

Description

Creates a structured user personas tibble for use in bidux functions. Replaces nested list structures with a validated data.frame structure.

Usage

new_user_personas(personas_df)

Value

A bid_user_personas S3 object (inherits from data.frame)

Arguments

personas_df

Data.frame with required columns: name, goals, pain_points, technical_level

Examples

Run this code
if (FALSE) {
personas <- new_user_personas(data.frame(
  name = c("data analyst", "product manager"),
  goals = c("quick insights", "strategic overview"),
  pain_points = c("complex tools", "data delays"),
  technical_level = c("intermediate", "beginner")
))
}

Run the code above in your browser using DataLab