Skip to contents

Show functions available at current UX level

Usage

show_available_functions(level = NULL)

Arguments

level

User experience level (optional, uses current level if not specified)

Value

Invisibly NULL; called for its formatted console output.

Examples

# Show functions at current level
show_available_functions()
#> TARGET: Available Functions ( basic  level)
#> ============================== 
#> 
#> Essential Functions ( 6 ):
#>   -  basic_transcript_analysis () -  Complete analysis workflow for new users 
#>   -  quick_analysis () -  Fast analysis for single transcripts 
#>   -  batch_basic_analysis () -  Process multiple transcripts at once 
#>   -  show_getting_started () -  Display getting started guide 
#>   -  show_available_functions () -  Show functions at your skill level 
#>   -  find_function_for_task () -  Find the right function for your task 
#> 
#> TIP: To see more functions: set_ux_level(' intermediate ')

# Show functions at specific level
show_available_functions("intermediate")
#> TARGET: Available Functions ( intermediate  level)
#> ===================================== 
#> 
#> Essential Functions ( 6 ):
#>   -  basic_transcript_analysis () -  Complete analysis workflow for new users 
#>   -  quick_analysis () -  Fast analysis for single transcripts 
#>   -  batch_basic_analysis () -  Process multiple transcripts at once 
#>   -  show_getting_started () -  Display getting started guide 
#>   -  show_available_functions () -  Show functions at your skill level 
#>   -  find_function_for_task () -  Find the right function for your task 
#> 
#> RESULTS: Common Functions ( 7 ):
#>   -  load_zoom_transcript () -  Load transcript from file 
#>   -  process_zoom_transcript () -  Clean and prepare transcript data 
#>   -  analyze_transcripts () -  Calculate engagement metrics 
#>   -  plot_users () -  Create visualizations 
#>   -  write_metrics () -  Save results to file 
#>   -  ensure_privacy () -  Protect sensitive data 
#>   -  show_function_help () -  Get help for specific function 
#> 
#> TIP: To see more functions: set_ux_level(' advanced ')