R中的时间平均数据

时间:2016-01-08 10:51:20

标签: r average

我获得了10小时长度的数据集(36.000个时间点,1秒= 1个时间点)。对于我的进一步分析,我应该使用10分钟的平均数据,这将等于600个时间点。 所以我理解这一点,我必须采取前600个时间点的平均值,这是我的新时间点,然后是下一个600时间点,依此类推?这意味着我最终会得到一个长度为60的时间序列。

我如何用R做到这一点?我想

xF<-filter(x, 600, sides = 2)

将是必需的函数,但它只是更改y轴上的值。

2 个答案:

答案 0 :(得分:2)

如果订购了数据集,则只需创建分组变量并使用tapply

# simulate data
x <- rnorm(36000)
# create a group variable
group <- factor(rep(1:(36000/600),each=600))
# compute mean for each slice of 600 data point
mean_by_10min <- tapply(x,group,mean)

答案 1 :(得分:0)

没有您的数据很难帮助您 但是,该命令看起来很可能像

    Status: 502
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="UTF-8">
  <title>???</title>
  <style type="text/css">
  .dn{display:none;}
  .db{display:block;}
  .dib{display:inline-block;}
  .b_dib{display:inline-block;*display:inline;*zoom:1;}
  .di{display:inline;}
  .vh{visibility:hidden;}
  .vv{visibility:visible;}
  .rel{position:relative;}
  .abs{position:absolute;}
  .oh{overflow:hidden;}
  .z{*zoom:1;}
  .l{float:left;}
  .r{float:right;}
  .cl{clear:both;}
  .group{*zoom:1;}
  .group:after{content:"\200B";display:block;height:0;clear:both;}
  .tc{text-align:center;}
  .tr{text-align:right;}
  .tl{text-align:left;}
  .tj{text-align:justify;*text-justify:distribute;}
  .vt{vertical-align:top;}
  .vm{vertical-align:middle;}
  .vb{vertical-align:bottom;}
  .f0{font-size:0;}
  .fa{font-family:Arial;}
  .fs{font-family:SimSun;}
  .fyh{font-family:"Microsoft YaHei";}
  .indent{text-indent:2em;}
  .n{font-weight:400;font-style:normal;}
  .b{font-weight:700;}
  .i{font-style:italic;}
  .tdn{text-decoration:none;}
  .tdn:hover{text-decoration:none;}
  .poi{cursor:pointer;}
  .text-hide{line-height:999em;overflow:hidden;}
  .drop_hl_extra{padding-left:999em;margin-left:-999em;}
  .drop_vb_extra{padding-bottom:999em;margin-bottom:-999em;}
  html{-webkit-text-size-adjust:none;}
  body,h1,h2,h3,h4,h5,p,ul,ol,dl,dd{margin:0;}
  ul,ol{padding-left:0;list-style-type:none;}
  a img{border:0;}
  body{background-color:#EAEAEA;font-family:"Microsoft YaHei",Helvetica,Verdana,Arial,Tahoma;font-size:14px;color:#222222;}
  .logo{padding-top:25px;}
  .wrapper{width:960px;margin-left:auto;margin-right:auto;}
  .container{margin-top:20px;box-shadow:0 3px 3px #ddd;-moz-box-shadow:0 3px 3px #ddd;-webkit-box-shadow:0 3px 3px #ddd;border-radius:3px;-moz-border-rad
  .err_wrapper{overflow:hidden;*zoom:1;padding:100px 260px 100px 260px;}
  .err_icon_holder{float:left;}
  .err_content{margin-left:180px;margin-top:30px;}
  .err_t{font-weight:700;font-size:20px;line-height:30px;}
  .err_text{line-height:28px;}
  .footer{padding-top:40px;font-size:12px;color:#999999;text-shadow:0 1px 1px #ffffff;text-align:center;}
  .page_link a{color:#4d5d2c;text-decoration:none;}
  .err_icon{display:inline-block;width:170px;height:130px;background:transparent url("http://res.wx.qq.com/mpres/htmledition/images/icon_page_err.png") n

  </style>
</head>
<body>
  <div class="header">
    <div class="wrapper">
      <h1 class="logo"><a href="http://mp.weixin.qq.com"><img src="http://res.wx.qq.com/mpres/htmledition/images/login/logo.png" alt="??????"></a></h1>
    </div>

  </div>
  <div class="main">
    <div class="wrapper">
      <div class="container">
        <div class="err_wrapper">
          <span class="err_icon_holder"><i class="err_icon page_503"></i></span>
          <div class="err_content">
            <h3 class="err_t">503 : HTTP Error 503</h3>
            <p class="err_text">???????,????????</p>
          </div>
        </div>
      </div>

    </div>

  </div>
  <div class="footer">
    <div class="wrapper">
      <p class="page_link">
        <a target="_blank" href="http://www.tencent.com/zh-cn/index.shtml">????</a>
        &nbsp;|&nbsp;
        <a target="_blank" href="http://mp.weixin.qq.com/cgi-bin/readtemplate?t=wxm-agreement&amp;type=info&amp;lang=zh_CN">????</a>
        &nbsp;|&nbsp;
        <a target="_blank" href="http://kf.qq.com/special_auto/weixin.html">????</a>
      </p>
      <p class="copyright">
        Copyright&nbsp;c 2012-2013 Tencent. All Rights Reserved.
      </p>
    </div>

  </div>


</body>
</html>

您需要将aggregate(iris$Petal.Length,by=list(iris$Petal.Width%/%0.5),mean) 替换为您的值,iris$Petal.Length替换时间戳,iris$Petal.Width替换为0.5

在我理解您的问题时,过滤不会汇总您的数据,因此,您最终会获得尽可能多的时间点。