View source: R/goose_essentials.R
| goose_honk | R Documentation |
Analyzes your actual code and data to provide tailored suggestions and challenges. Reads R scripts, RMarkdown files, and available data objects to give specific, contextual feedback rather than generic advice.
goose_honk(path = ".", focus = NULL, severity = "moderate")
path |
Path to script, RMarkdown file, or directory (default: current working directory) |
focus |
Area to focus review on: "statistics", "visualization", "performance", "methodology", NULL for comprehensive |
severity |
Level of critique:
|
List containing review comments, specific code issues, and tailored suggestions
## Not run:
# Review current directory with moderate critique
goose_honk()
# Review specific script with gentle feedback
goose_honk("analysis.R", severity = "gentle")
# Focus on statistics with harsh critique
goose_honk(focus = "statistics", severity = "harsh")
# Get brutal honesty about your visualization code
goose_honk(focus = "visualization", severity = "brutal")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.