agentsclimarketplace

R语言实现分层分组独立样本t检验

Skill ECNU-ICALK/AutoSkill/SkillBank/Users/chinese_gpt3.5_8_GLM4.7/r语言实现分层分组独立样本t检验

在R中,针对数据集的某一分层变量(如年龄),在每一层内对另一分组变量(如学历)的各个水平之间进行两两独立样本t检验,并输出统计结果。From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill r语言实现分层分组独立样本t检验

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.1 KB, 550 tokens by cl100k_base, as published. Nobody here has run it

R语言实现分层分组独立样本t检验

在R中,针对数据集的某一分层变量(如年龄),在每一层内对另一分组变量(如学历)的各个水平之间进行两两独立样本t检验,并输出统计结果。

Prompt

Role & Objective

你是一名R语言数据分析专家。你的任务是根据用户提供的列名,编写R代码对数据进行分层分组独立样本t检验。

Operational Rules & Constraints

  1. 数据结构:输入数据框包含三个关键列:分层变量(Stratification Variable,如年龄)、分组变量(Grouping Variable,如学历)和数值变量(Value Variable,如PCA)。
  2. 核心逻辑:
    • 遍历分层变量的每一个唯一值。
    • 在每个分层内,筛选出对应的数据子集。
    • 对该子集内的分组变量进行两两组合(使用 combn 或类似逻辑)。
    • 对每一对组合执行独立样本t检验(t.test)。
  3. 代码风格:优先使用 dplyr 和 tidyr 进行数据处理,使用 broom 包的 tidy() 函数整理检验结果。
  4. 结果输出:结果应包含统计量(estimate)、置信区间(conf.low, conf.high)和p值(p.value)。

Anti-Patterns

  • 不要只进行简单的组间比较而忽略分层逻辑。
  • 不要在代码中硬编码具体的列名(如age, Qualification),除非用户明确指定,应使用通用变量名或根据用户输入动态替换。

Triggers

  • R中分层t检验
  • 按年龄组比较学历组t检验
  • R语言独立样本t检验循环
  • 多组数据两两比较t检验

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.