Learn R Programming

artma (version 0.3.3)

autonomy.set: Set Autonomy Level

Description

Set the autonomy level for the current session. This setting controls how much user interaction is required during analysis.

Usage

autonomy.set(level)

Value

NULL (invisible)

Arguments

level

[integer] The autonomy level to set (1-5).

  • 1 (Minimal): Maximum user control - prompt for all optional decisions

  • 2 (Low): Frequent prompts - ask for most non-critical decisions

  • 3 (Medium): Balanced - prompt for important decisions only

  • 4 (High): Mostly autonomous - minimal prompts for critical decisions only (default)

  • 5 (Full): Fully autonomous - no prompts, use all defaults and auto-detection

Examples

Run this code
if (FALSE) {
# Set to fully autonomous mode
autonomy.set(5)

# Set to balanced mode
autonomy.set(3)
}

Run the code above in your browser using DataLab