Skip to contents

Provides interactive help and function discovery to help users find the right functions for their specific tasks. Interactive function discovery

Helps users find the right function based on what they want to do

Usage

find_function_for_task(task)

Arguments

task

Description of what user wants to do

Value

Invisibly NULL; called for its function suggestions printed to the console.

Examples

find_function_for_task("load transcript file")
#> Looking for functions to:  load transcript file 
#> ================================================== 
#> 
#> Loading Transcript Files:
#>    - load_zoom_transcript() - Load individual transcript files
#>    - load_roster() - Load student roster information
#>    - summarize_transcript_files() - Load and summarize multiple transcripts
#> 
#> TARGET: Recommended Next Steps:
#>    - show_function_help('function_name') - Get detailed help
#>    - show_available_functions() - See all available functions
#>    - set_ux_level('intermediate') - Show more functions
#>    - show_getting_started() - Complete getting started guide
find_function_for_task("create visualizations")
#> Looking for functions to:  create visualizations 
#> =================================================== 
#> 
#> TIP: General Guidance:
#>    - For complete analysis: basic_transcript_analysis()
#>    - For quick results: quick_analysis()
#>    - For multiple files: batch_basic_analysis()
#>    - For step-by-step: show_getting_started()
#> 
#> TARGET: Recommended Next Steps:
#>    - show_function_help('function_name') - Get detailed help
#>    - show_available_functions() - See all available functions
#>    - set_ux_level('intermediate') - Show more functions
#>    - show_getting_started() - Complete getting started guide
find_function_for_task("export results")
#> Looking for functions to:  export results 
#> ============================================ 
#> 
#> Exporting Results:
#>    - write_metrics(data, path = 'your/output.csv') - Export privacy-processed metrics to CSV
#>    - write_unresolved() - Export unresolved-name review data
#>    - generate_privacy_review_report() - Write a privacy review report
#> 
#> TARGET: Recommended Next Steps:
#>    - show_function_help('function_name') - Get detailed help
#>    - show_available_functions() - See all available functions
#>    - set_ux_level('intermediate') - Show more functions
#>    - show_getting_started() - Complete getting started guide