R箱线图与哪个函数

发布于 2024-12-06 17:00:59 字数 426 浏览 1 评论 0原文

我有两次现场采样活动的数据。我已经组织了数据的多个列和行:

  • 数据=样本点
  • 列=元素(1,...,n),季节,样本类型和其他一些。

添加。列信息:

  • season = 1,2(区分季节)
  • sampletype = 1,2,3(区分样本类型)

这两列采用因子格式。

我想要什么:一个箱线图,显示第 1 季和第 2 季元素 i 的箱线图(在一张图中)。但是,不是针对所有样本类型,而是针对 1 个样本类型,例如:

boxplot(element i ~ Season)  

这将为我提供所有样本类型中元素 i 的数据的箱线图,但在季节之间进行区分。但我只想要 1 个样本类型。

我该怎么做?

I have data from 2 field sampling campaigns. I have organised the data severeal columns and rows:

  • Data = sample points
  • Columns = elements (1,...,n) , season, Sampletype and some others.

Add. info on Columns:

  • season = 1,2 (discriminating between seasons)
  • sampletype = 1,2,3 (discriminating between sampletypes)

These 2 columns are in factor format.

What I want: A boxplot which shows the boxplot for an element i for the season 1 and for season 2 (In one graph). However, not over all sampletypes but only 1, e.g:

boxplot(element i ~ Season)  

This would give me the boxplot of the data of element i over all sample types but differentiated between the seasons. But I just want it for 1 sampletype.

How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

征﹌骨岁月お 2024-12-13 17:00:59

使用 subset 参数:

boxplot(element~Season,data=Data,subset=sampletype==1)

Use the subset parameter:

boxplot(element~Season,data=Data,subset=sampletype==1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文