R箱线图与哪个函数
我有两次现场采样活动的数据。我已经组织了数据的多个列和行:
- 数据=样本点
- 列=元素(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
subset
参数:Use the
subset
parameter: