Table of Contents
回复内容:
Home Backend Development PHP Tutorial javascript - 按照周将数据分类问题

javascript - 按照周将数据分类问题

Jun 06, 2016 pm 08:24 PM
javascript php

Hi,小弟我现在有一个数据,是按照每天计算出来的tp.对应的数据为

<code>["2011-1-1","2011-1-2","2011-1-3","2011-1-4",...]
</code>
Copy after login
Copy after login

每一天对应的数据(tp)

<code>[1,2,2,3,...]
</code>
Copy after login
Copy after login

那么现在要讲这些日期按照周分类,没就是计算的结果为

<code>["2011年第一周",...]
</code>
Copy after login
Copy after login

数据为

<code>[8,...]

</code>
Copy after login
Copy after login

那么现在该怎么做呢?? 用什么语言实现都无所谓~~~~

回复内容:

Hi,小弟我现在有一个数据,是按照每天计算出来的tp.对应的数据为

<code>["2011-1-1","2011-1-2","2011-1-3","2011-1-4",...]
</code>
Copy after login
Copy after login

每一天对应的数据(tp)

<code>[1,2,2,3,...]
</code>
Copy after login
Copy after login

那么现在要讲这些日期按照周分类,没就是计算的结果为

<code>["2011年第一周",...]
</code>
Copy after login
Copy after login

数据为

<code>[8,...]

</code>
Copy after login
Copy after login

那么现在该怎么做呢?? 用什么语言实现都无所谓~~~~

<code><?php $date_list     = null;
$num_list     = null;
$index = 0;
while($index < 20) {
    $date_list[] = date('Y-m-d',strtotime('-' . $index . ' day'));
    $num_list[] = $index;
    $index++;
}

// 先别管上面的代码,只是为了生成你的数据
$ret_list = null;
// 假设日期数组和值数组的索引一致
foreach($date_list as $k => $date) {
    if($ret_list[date('W', strtotime($date))]) {
        $ret_list[date('W', strtotime($date))] += $num_list[$k];
    } else {
        $ret_list[date('W', strtotime($date))] = $num_list[$k];
    }
}
echo("日期数组:<br>");
print_r($date_list);
echo("<br>");

echo("数值数组:<br>");
print_r($num_list);
echo("<br>");

echo("按周统计数组(数组的键就是今年的第几周):<br>");
print_r($ret_list);
</code>
Copy after login

重点在于date函数的使用,如何获取日期属于年度的第几周,看看php的doc吧。

var datas = ["2011-1-1","2011-1-2","2011-1-3","2011-1-4",...]

function toWeekAarry(data){
    var dateArr
        ,dateObj
        ,currWeek = 0;
        ,weeks = [];
    //假设楼主的数据不是连续的,而且不是全部元素合法
    datas.filter(dateStr=>typeof dateStr==="string").forEach(dateStr=>{
        dateArr = dateStr.split("-")
        if(dateArr.length===3){
            dateObj = new Date(dateArr[0],dateArr[1],dateArr[2])
            currWeek = getWeekOfDate(dateObj)
            if(!weeks[])weeks[currWeek]=[]
            weeks[currWeek].push(date);
        }
    })
    
    retrun weeks.map(week=>if(!week)week=[]);
}

//返回结果是一个按照第几周组成的复合数组。
Copy after login

getWeekOfDate方法来自 http://stackoverflow.com/questions/9045868/javascript-date-getweek

function getWeekOfDate (dateObj,dowOffset) {
    dowOffset = typeof(dowOffset) == 'int' ? dowOffset : 0; //default dowOffset to zero
    var newYear = new Date(dateObj.getFullYear(),0,1);
    var day = newYear.getDay() - dowOffset; //the day of week the year begins on
    day = (day >= 0 ? day : day + 7);
    var daynum = Math.floor((dateObj.getTime() - newYear.getTime() - 
    (dateObj.getTimezoneOffset()-newYear.getTimezoneOffset())*60000)/86400000) + 1;
    var weeknum;
    //if the year starts before the middle of a week
    if(day < 4) {
        weeknum = Math.floor((daynum+day-1)/7) + 1;
        if(weeknum > 52) {
            nYear = new Date(dateObj.getFullYear() + 1,0,1);
            nday = nYear.getDay() - dowOffset;
            nday = nday >= 0 ? nday : nday + 7;
            /*if the next year starts before the middle of
              the week, it is week #1 of that year*/
            weeknum = nday < 4 ? 1 : 53;
        }
    }
    else {
        weeknum = Math.floor((daynum+day-1)/7);
    }
    return weeknum;
};
Copy after login

1)计算日期对应的周信息

<code>function getWeekOfYear(date){
    var year=date.getFullYear();

    var baseDate=new Date(year,0,1);
    var baseWeekDay=testDate.getDay();

    var dateWeekDay=date.getDay();

    if(baseWeekDay==0) baseWeekDay=7;
    if(dateWeekDay==0) dateWeekDay=7;


    var weekOfYear=Math.round(((date.getTime()-dateWeekDay*3600*24*1000)-(baseDate.getTime()-baseWeekDay*3600*24*1000))/(24*3600*1000)/7);

    return weekOfYear+1;
}</code>
Copy after login

2)将在同一周的数据相加

<code>
var dateArray=["2011-1-1","2011-1-2","2011-1-3","2014-10-01",'2014-01-01','2015-11-11'];
var dateTpArray=[9,8,7,6,121323445,23492742742374324];

var dateReg=/^(\d{4})\-(\d{1,2})\-(\d{1,2})$/;

var reduceResult={};
dateArray.forEach(function(item,index){
    var matchResult=dateReg.exec(item);
    console.log('%s %s %s',matchResult[1],matchResult[2],matchResult[3]);
    var weekOfYear=getWeekOfYear(new Date(parseInt(matchResult[1],10),parseInt(matchResult[2],10)-1,parseInt(matchResult[3],10)));
    if(!reduceResult[matchResult[1]+'_'+weekOfYear]){
        reduceResult[matchResult[1]+'_'+weekOfYear]={
            desc:matchResult[1]+'第'+weekOfYear+'周',
            tps:0
        }
    }
    reduceResult[matchResult[1]+'_'+weekOfYear].tps=reduceResult[matchResult[1]+'_'+weekOfYear].tps+dateTpArray[index];
});
var weekOfYearDescArray=[];
var weekofYearTpArray=[];
for(var prop in reduceResult){
    if(reduceResult.hasOwnProperty((prop))){
        weekOfYearDescArray.push(reduceResult[prop].desc);
        weekofYearTpArray.push(reduceResult[prop].tps);

    }
}

console.log(weekOfYearDescArray);
console.log(weekofYearTpArray);</code>
Copy after login

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles