生成向量范围内的序列
例子
x <- rcauchy(100)
seq_range(x, n = 10)
#> [1] -258.628312 -225.157725 -191.687139 -158.216553 -124.745967
#> [6] -91.275381 -57.804794 -24.334208 9.136378 42.606964
seq_range(x, n = 10, trim = 0.1)
#> [1] -5.0341702 -3.6723146 -2.3104590 -0.9486034 0.4132522 1.7751079
#> [7] 3.1369635 4.4988191 5.8606747 7.2225303
seq_range(x, by = 1, trim = 0.1)
#> [1] -5.03417019 -4.03417019 -3.03417019 -2.03417019 -1.03417019
#> [6] -0.03417019 0.96582981 1.96582981 2.96582981 3.96582981
#> [11] 4.96582981 5.96582981 6.96582981
# Make pretty sequences
y <- runif(100)
seq_range(y, n = 10)
#> [1] 0.01792089 0.12533689 0.23275289 0.34016889 0.44758489 0.55500089
#> [7] 0.66241689 0.76983289 0.87724889 0.98466489
seq_range(y, n = 10, pretty = TRUE)
#> [1] 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0
seq_range(y, n = 10, expand = 0.5, pretty = TRUE)
#> [1] -0.4 -0.2 0.0 0.2 0.4 0.6 0.8 1.0 1.2 1.4
seq_range(y, by = 0.1)
#> [1] 0.01792089 0.11792089 0.21792089 0.31792089 0.41792089 0.51792089
#> [7] 0.61792089 0.71792089 0.81792089 0.91792089
seq_range(y, by = 0.1, pretty = TRUE)
#> [1] 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0
相关用法
- R modelr typical 求典型值
- R modelr resample “惰性”重采样。
- R modelr crossv_mc 生成测试训练对以进行交叉验证
- R modelr model_matrix 构建设计矩阵
- R modelr model-quality 计算给定数据集的模型质量
- R modelr permute 生成 n 个排列重复。
- R modelr fit_with 拟合公式列表
- R modelr add_residuals 将残差添加到 DataFrame
- R modelr data_grid 生成数据网格。
- R modelr formulas 创建公式列表
- R modelr add_predictions 将预测添加到 DataFrame
- R modelr resample_partition 生成数据帧的独占分区
- R modelr add_predictors 将预测变量添加到公式中
- R modelr na.warn 处理缺失值并发出警告
- R modelr bootstrap 生成 n 个引导程序重复。
- R modelr resample_bootstrap 生成 boostrap 复制
- R vcov.gam 从 GAM 拟合中提取参数(估计器)协方差矩阵
- R gam.check 拟合 gam 模型的一些诊断
- R matrix转list用法及代码示例
- R as 强制对象属于某个类
- R null.space.dimension TPRS 未惩罚函数空间的基础
- R language-class 表示未评估语言对象的类
- R gam.reparam 寻找平方根惩罚的稳定正交重新参数化。
- R className 类名包含对应的包
- R extract.lme.cov 从 lme 对象中提取数据协方差矩阵
注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Generate a sequence over the range of a vector。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。