将变量转换为R中的时间序列数据

时间:2017-09-06 04:35:47

标签: r time

我说了一个载体

if (this.projectCurrentProduct.occupancyType.owner) {
  this.productStatusReferences = 'productStatusSale'
} else if (this.projectCurrentProduct.occupancyType.tenant) {
  this.productStatusReferences = 'productStatusRent'
}

我想根据给出的参数

转换此数据集
a = log10(1:1000) + rnorm(1000)

一个函数说

n = 10

这样我的数据应转换为

b = function(a,x){...........................}

d = b(a,x)

3 个答案:

答案 0 :(得分:1)

试试这个:

Set<Integer> treeSet = new TreeSet<>();
treeSet.last() //gives compilation error
//solution here is either to cast the treeSet instance  
//Or create treeSet using TreeSet concrete class. Which is not a best practice.

答案 1 :(得分:1)

使用?embed更简单:

embed(a,n)[,n:1]

它没有相同的名称,并返回一个矩阵,但除此之外它与您的较长结果相同:

identical( embed(a,n)[,n:1], unname(as.matrix(b)) )
#[1] TRUE

答案 2 :(得分:0)

index()