R语言
environmental
位于 lattice
包(package)。 说明
1973 年 5 月至 9 月纽约市臭氧浓度、风速、温度和太阳辐射的每日测量结果。
用法
environmental
格式
包含以下 4 个变量的 111 个观测值的 DataFrame 。
- 臭氧
-
平均臭氧浓度(每小时测量)为十亿分之几。
- 辐射
-
兰利的太阳辐射(从 08:00 到 12:00)。
- 温度
-
每日最高温度(华氏度)。
- 风
-
平均风速(07:00 和 10:00),以英里/小时为单位。
例子
# Scatter plot matrix with loess lines
splom(~environmental,
panel=function(x,y){
panel.xyplot(x,y)
panel.loess(x,y)
}
)
# Conditioned plot similar to figure 5.3 from Cleveland
attach(environmental)
Temperature <- equal.count(temperature, 4, 1/2)
Wind <- equal.count(wind, 4, 1/2)
xyplot((ozone^(1/3)) ~ radiation | Temperature * Wind,
aspect=1,
prepanel = function(x, y)
prepanel.loess(x, y, span = 1),
panel = function(x, y){
panel.grid(h = 2, v = 2)
panel.xyplot(x, y, cex = .5)
panel.loess(x, y, span = 1)
},
xlab = "Solar radiation (langleys)",
ylab = "Ozone (cube root ppb)")
detach()
# Similar display using the coplot function
with(environmental,{
coplot((ozone^.33) ~ radiation | temperature * wind,
number=c(4,4),
panel = function(x, y, ...) panel.smooth(x, y, span = .8, ...),
xlab="Solar radiation (langleys)",
ylab="Ozone (cube root ppb)")
})
作者
Documentation contributed by Kevin Wright.
来源
Bruntz, S. M., W. S. Cleveland, B. Kleiner, 和 J. L. Warner。 (1974)。环境臭氧对太阳辐射、风、温度和混合高度的依赖性。大气扩散和空气污染研讨会,第 125-128 页。美国气象学会,波士顿。
参考
Cleveland, William S. (1993) Visualizing Data. Hobart Press, Summit, New Jersey.
相关用法
- R ethanol 燃烧乙醇时发动机排出的废气
- 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大神的英文原创作品 Atmospheric environmental conditions in New York City。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。