apa_reporting
Generate APA-style statistical reporting templates for research results to ensure proper formatting and compliance with academic standards.
Instructions
APA 스타일 통계 보고 템플릿
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| test_type | Yes | 검정 유형 | |
| results | Yes | 결과 값들 |
Implementation Reference
- src/tools/index.ts:620-630 (registration)Registration of the 'apa_reporting' tool including name, description, and input schema for test_type and results.name: "apa_reporting", description: "APA 스타일 통계 보고 템플릿", inputSchema: { type: "object", properties: { test_type: { type: "string", description: "검정 유형" }, results: { type: "object", description: "결과 값들" }, }, required: ["test_type", "results"], }, },
- src/tools/index.ts:1840-1845 (handler)The handler function for 'apa_reporting' tool. It takes args with test_type and returns a basic APA style reporting template string.function handleApaReporting(args: Record<string, unknown>) { return { test_type: args.test_type, template: "t(df) = X.XX, p < .05, d = X.XX, 95% CI [X.XX, X.XX]" }; }