R语言
ethanol
位于 lattice
包(package)。 说明
乙醇燃料在 single-cylinder 发动机中燃烧。对于发动机压缩和当量比的各种设置,记录氮氧化物的排放量。
用法
ethanol
格式
包含以下 3 个变量的 88 个观测值的 DataFrame 。
- 氮氧化物
-
氮氧化物(NO 和 NO2)浓度,单位为微克/J。
- C
-
发动机的压缩比。
- E
-
等效ratio-a 衡量空气和乙醇燃料混合物的丰富度。
例子
## Constructing panel functions on the fly
EE <- equal.count(ethanol$E, number=9, overlap=1/4)
xyplot(NOx ~ C | EE, data = ethanol,
prepanel = function(x, y) prepanel.loess(x, y, span = 1),
xlab = "Compression ratio", ylab = "NOx (micrograms/J)",
panel = function(x, y) {
panel.grid(h=-1, v= 2)
panel.xyplot(x, y, grid = FALSE)
panel.loess(x, y, span = 1)
},
aspect = "xy")
# Wireframe loess surface fit. See Figure 4.61 from Cleveland.
require(stats)
with(ethanol, {
eth.lo <- loess(NOx ~ C * E, span = 1/3, parametric = "C",
drop.square = "C", family="symmetric")
eth.marginal <- list(C = seq(min(C), max(C), length.out = 25),
E = seq(min(E), max(E), length.out = 25))
eth.grid <- expand.grid(eth.marginal)
eth.fit <- predict(eth.lo, eth.grid)
wireframe(eth.fit ~ eth.grid$C * eth.grid$E,
shade=TRUE,
screen = list(z = 40, x = -60, y=0),
distance = .1,
xlab = "C", ylab = "E", zlab = "NOx")
})
作者
Documentation contributed by Kevin Wright.
来源
Brinkman, N.D. (1981) 乙醇燃料 — Single-Cylinder 发动机效率和废气排放研究。 SAE 交易,90,1410-1424。
参考
Cleveland, William S. (1993) Visualizing Data. Hobart Press, Summit, New Jersey.
相关用法
- R environmental 纽约市的大气环境条件
- R panel.xyplot xyplot 的默认面板函数
- R xyplot.ts 时间序列绘图方法
- R panel.bwplot bwplot 的默认面板函数
- R panel.loess 添加黄土平滑的面板函数
- R lset 修改网格设置的接口 - 已失效
- R panel.axis 绘图轴刻度和标签的面板函数
- R Rows 从列表中提取行
- R panel.number 在绘图期间访问辅助信息
- R trellis.par.get 网格显示的图形参数
- R update.trellis 检索和更新网格对象
- R barley 明尼苏达州大麦试验的产量数据
- R panel.functions 有用的面板函数组件
- R prepanel.functions Lattice 有用的 Prepanel 函数
- R xyplot 常见的二变量网格图
- R simpleTheme 生成简单主题的函数
- R panel.parallel 并行的默认面板函数
- R print.trellis 绘制和总结网格对象
- R panel.cloud 云默认面板函数
- R packet.panel.default 将数据包与面板关联
- R levelplot 水平图和等高线图
- R trellis.device 初始化网格显示
- R cloud 3d 散点图和线框曲面图
- R tmd Tukey 均差图
- R panel.pairs splom 的默认超级面板函数
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Engine exhaust fumes from burning ethanol。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。