Date and Time Functions in esProc

Blog 2099 0

Date and time data has its own characteristics for analysis and handling. In this article let’s look at how to perform date and time handling in esProc.

1. Conversion to date and time data

Usually the date and time data is entered or displayed as strings. With esProc, you can click Tool>Option to set the default format for date and time data on the Environment tab. For example:

esProc_date_time_function_1

Then the date and time data will be displayed as the default format in an esProc cellset. Here’s an example:

  A
1 =now()

A1 gets result as follows:

esProc_date_time_function_2

The now() function is often used to obtain the current system date and time in date and time handling.

When entering a date/time/datetime constant, enter it in the default format as a string. esProc will automatically parse the constant into date and time data. For example:

  A B C
1 02/01/2016 12:45:30 02/01/2016 10:30:00

A1, B1 and C1 will be parsed into the date data, time data and datetime data respectively, as shown below:
esProc_date_time_function_3

If the data is string type, instead of a constant directly entered in esProc, use date() function, time() function or datetime() function to convert the string data to the date data, time data or datetime data. For example:

  A B C
1 2016 2 20
2 =B1/”/”/C1/”/”/A1 =12/”:”/22/”:00″ =A2+” “+B2
3 =ifdate(A2) =iftime(B2) =ifdate(C2)
4 =date(A2) =time(B2) =datetime(C2)
5 =ifdate(A4) =iftime(B4) =ifdate(C4)

Below are the strings in A2, B2 and C2:
esProc_date_time_function_4

The code in the third line uses ifdate() function and iftime() function to check if the strings in the second line have been converted to the date data or time data or datatime data. Note that ifdate() function is used to find if a value is a date type or a datetime type. A3, B3 and C3 respectively have the following results:
esProc_date_time_function_5

In the fourth line, strings are converted into the date data, time data and datetime data according to the specified formats. Here’re the results:

esProc_date_time_function_6

In the fifth line, same functions are used to check if the values in the fourth line are date type, time type or datetime type. A5, B5 and C5 get results as follows:
esProc_date_time_function_7

For the external data, sometimes you need to handle various formats of date data, time data, and datetime data. In this case, you can add a display format string after a string when using date() function, time() function or datetime()function to convert the data type. For example:

  A B C
1 Feb 2, 2016 ‘2:30:45 PM 2016-2-20 2:30:45 PM
2 MMM d,yyyy h:m:s a yyyy-M-d h:m:s a
3 =date(A1,A2) =time(B1,B2) =datetime(C1,C2)

Values in the first line are not in the default date, time and datetime formats. The value in B1 adds the character ‘ at the beginning to show that this is a string constant. Below are values of A1, B1 and C1:
esProc_date_time_function_8

The second line lists the display format strings for the values in the first line. Then in the third line, functions for converting values to the date data, time data and datetime data specify the display formats for them. Below are the results of A3, B3 and C3:

esProc_date_time_function_9

With the type conversion, values will be shown in the default format when being viewed. For more details about the display formats of the date and time data, see Data Display Formats in esProc. By defining the display format with the string(d,fmt) function, you can transform the date and time data to strings of the specified formats. For example:

  A B C
1 02/01/2016 12:45:30 02/01/2016 10:30:00
2 MMMM d,yyyy h:m:s a MMM d,yyyy h:m:s a
3 =string(A1,A2) =string(B1,B2) =string(C1,C2)

A3, B3 and C3 convert the date, time and datetime data into the string data:
esProc_date_time_function_10

You can also directly change the default display format for the date and time data as required.

When using date() function, time() function and datetime() function to generate data of the corresponding types, you can directly specify the quantities for the year, month, day, hour, minute and second respectively. For example:

  A B C
1 =date(2016,2,20) =time(13,5,0) =datetime(2016,2,29,13,5,0)

Below are the result of A1, B1 and C1:
esProc_date_time_function_11

Pay attention to the proper and reasonable range of each of the above integers when assigning quantities to them. For instance, the value range of hour is 0~23.

2. Obtaining information from date/time/datetime data

The date data, time data and datetime data holds a lot of information, like the year, month, day, hour, minute and second. esProc provides functions such as year(), month(), day(), hour(), minute(), second(), and millisecond() to get values of these parts. For example:

  A B C
1 02/21/2016 12:45:30 =now()
2 =year(A1) =month(A1) =day(A1)
3 =hour(B1) =minute(B1) =second(B1)
4 =month(C1) =hour(C1) =millisecond(C1)

Below are the date, time and datetime data in A1, B1 and C1:
esProc_date_time_function_12

A2, B2 and C2 obtain the value of each part from the date value:
esProc_date_time_function_13

A3, B3 and C3 obtain the value of each part from the time value:

esProc_date_time_function_14

A4, B4 and C4 obtain the values of month, hour and millisecond from the datetime value of the now() function:
esProc_date_time_function_15

As can be seen, the now() function returns a result accurate to the millisecond. But you can make it return results of different degrees of accuracy by adding different options. For example:

  A B C
1 =now@d() =now@t()  
2 =now@m() =now@s() =millisecond(B2)

A1 adds @d option to get only the date part, and B1 adds @t option to get merely the time part. Below are their results:

esProc_date_time_function_16

A2 uses @m option to have a result accurate to minute, and B2 uses @s option to get a result accurate to second. Below are the results:
esProc_date_time_function_17

You can see from the result of C2 that the value of millisecond part of B2 is 0:
esProc_date_time_function_18

Both @m option and @s option can be used to set the degree of accuracy as minute or second by datetime() function and time() function in conversion to datetime data and time data.

You can obtain the time part from date data, and get date part from time data. For example:

  A B C
1 02/21/2016 12:45:30  
2 =hour(A1) =minute(A1) =second(A1)
3 =year(B1) =month(B1) =day(B1)

Below are the results of A2, B2 and C2:
esProc_date_time_function_19

It can be seen that the default time in a date value is 00:00:00.

Below are the results of A3, B3 and C3:

esProc_date_time_function_20

So you can see that the default date in a time value is January 1, 1970.

Apart from getting the component values directly from date/time/datetime data, there’re also some esProc functions for getting date information.

You can use @w option in the day() function, which gets the date, to find the ordinal number of the given date in the week to which it belongs:

  A B C
1 02/14/2016 02/17/2016 02/20/2016
2 =day@w(A1) =day@w(B1) =day@w(C1)
3 =string(A1,”EEEE”) =string(B1,”EEEE”) =string(C1,”EEEE”)

AA2, B2 and C2 find the ordinal numbers of the given dates in their respective weeks. The results are as follows:
esProc_date_time_function_21

According to the results, a week begins on Sunday. To give you a clearer view, the code in the third line determines the day of the week for each of the given dates with a display format string:
esProc_date_time_function_22

The pdate() function can work with different options to get the corresponding dates:

  A B C
1 08/17/2015    
2 =pdate@w(A1) =pdate@m(A1) =pdate@q(A1)
3 =pdate@we(A1) =pdate@me(A1) =pdate@qe(A1)

Use @w option in pdate() function to get the date of the first day of the defined week that begins with Sunday; use @m option to get the date of the first day of the defined month; use @q option to get the date of the first day of the defined quarter; and use @e option with any of the other options to get the date of the last day of the defined time period, like a week and a quarter. Below are the respective results of A2, B2, C2, A3, B3 and C3:
esProc_date_time_function_23

The days() function by default calculates the number of days in the month to which a certain date belongs. Along with @q option, the function can calculate the number of days in the quarter to which the date belongs; and by working with @y option, it calculates the number of days in the year to which the date belongs. For example:

  A B C
1 2/21/2016    
2 =days(A1) =days@q(A1) =days@y(A1)

Below are the results of A2, B2 and C2:

esProc_date_time_function_24

3. Date and time handling

Besides obtaining information directly from the date and time data, you can also use them to perform various operations in esProc. The most common date handling operation is to calculate age:

  A B C
1 3/30/1995 =now@d()  
2 =age(A1) =age@m(A1) =age@y(A1)

The values of A1 and A2 are as follows:
esProc_date_time_function_25

The age() function in the second line calculates the age according to A1’s date of birth and the current date. By default the function returns a result accurate to the day, but it will return one accurate to the month or the year with @m option or @y option added. With different degrees of accuracy, the obtained age could be different. The results of A2, B2 and C2 are as follows:
esProc_date_time_function_26

What the age() function gets is similar to calculating the number of years between the date of birth and the current date. But to find the interval between two dates, the interval() function is more widely used. It by default finds the number of days between two dates, but, by working with options such as @y, @q, @m, @s and @ms, it can find the number of years, quarters, months, seconds and milliseconds between the two dates. For example:

  A B C
1 3/30/1995 2/15/2016  
2 =interval(A1,B1) =interval@y(A1,B1) =B1-A1

If you just need to find the number of days between two dates, do it through subtraction. Below are the results of A2, B2 and C2:
esProc_date_time_function_27

By the way, each date/time/datetime value can be converted to a long integer, which is in effect the number of milliseconds between the value itself and 0:00:00 January 1, 1970 GMT. For example:

  A B
1 =datetime(“1/1/1970 0:00:00 GMT”,”m/d/yyyy H:mm:ss z”) 3/30/1995
2 =interval@ms(A1,B1) =long(B1)

B2 uses long() function to convert the date data to a long integer directly. Both A2 and B2 get the same result:
esProc_date_time_function_28
The after(t,k) function finds the datetime value which is k days after the given datetime value t. With the option @y, the function gets the datetime value which is k years later. Similarly, options including @q, @m, @s and @ms can be added to get a datetime value based on the time unit of the quarter, the month, the second and the millisecond. For example:

  A B C
1 3/30/1995    
2 =after(A1,10) =after@y(A1,20) =after@m(A1,-1)

A2, B2 and C2 respectively find the date ten days later, the date 20 years later, and the date one month before. Below are their results:
esProc_date_time_function_29

To find the date which is certain days before or after a given date, do it in the simple way of subtraction, such as =A1+10,=A1-10.

Since not all months have the same number of days, the function for getting the date which is k months after a given date will by default check if the resulting date is the last day of the month to which it belongs and modify it to the last day if it isn’t. Use @e option if the modification isn’t wanted. For example:

  A B C
1 2/29/2016 =after@m(A1,3) =after@me(A1,3)

Below are results of B1 and C1:
esProc_date_time_function_30

As February 29, 2016 is the last day of the month, B1 also gets the last day of May which is 3 months later. But by using @e option, C1 only finds the date which is exactly 3 months after the given date without making any adjustment.

Generally it’s inconvenient to compare two datetime values in a direct way. But esProc offers deq() function make the comparison. If the dates in the two values are the same, then the two values are regarded as equal. Options including @y, @q, @m, @t and @w can be added to set the degree of accuracy as the year, the quarter, the month, the period of ten days and the week. For example:

  A B C
1 2/15/2016 12:05:00 2/15/2016 18:45:20 2/29/2016 12:05:00
2 =deq(A1,B1) =deq(A1,C1) =deq@m(A1,C1)

Below are the values of A2, B2 and C2:
esProc_date_time_function_31

Another type of date and time handling is about the workdays. The workday(t,k,h) function finds the date that is the kth workdays after the given date t. The workdays(b,e,h) function gets a sequence of workdays between the starting date b and the ending date e inclusive. The computation related to the workdays is slightly complicated. Normally the weekdays are Monday through Friday, but owing to the public holidays, sometimes certain weekdays become holidays, or a certain weekend day becomes workday. In this case, h, a sequence of special dates, will be used, where the non-weekend date is a holiday and the weekend day is a workday. For example:

  A B C
1 12/31/2015 1/14/2016 1/20/2016
2 [1/1/2016,1/18/2016]    
3 =workday(A1,2,A2) =workdays(B1,C1) =workdays(B1,C1,A2)

A2 sets a sequence of public holidays in January, 2016, including the New Year’s Day and the Martin Luther King Day. Below is A3’s result:
esProc_date_time_function_32

Because the January 1, 2016 is the New Year’s Day and the following January 2 and 3 are weekends, the second workday after December 31, 2015 is January 5, 2016.

Below are the results of B3 and C3:
esProc_date_time_function_33

Without specifying a sequence of dates of adjusted workdays and holidays, January 18, 2016 is still a workday.

Though the workdays() function is used to generate a sequence of workdays, another function periods(s,e,i) is more commonly used to generate a sequence of date, time or datetime values between the given starting date b and ending date e at a specified interval of every i day(s). With the options @y, @q, @m, @t and @s added, the unit of the time interval could be the year, the quarter, the month, the period of ten days or the second. If the specified ending date isn’t wanted, use @x option. In this sequence of date, time or datetime values, each value will be automatically displayed as the first date of the specified time unit, such as the first day of the month or the year. Use @o option to cancel the automatic adjustment. For example:

  A B C
1 1/14/2016 1/20/2016 4/1/2016
2 =periods(A1,B1) =periods@m(B1,C1)  
3 =periods@xm(B1,C1) =periods@om(B1,C1) =periods@oxm(B1,C1)

Below are the results of A2 and B2:
esProc_date_time_function_34

The unit of time interval in A2 is the day, and the that in A3 is the month.

A3 discards the ending date using @x option, B3 won’t automatically adjust the generated date into the first day of the month with @o option, and C3 use both options. Below are the results of A3, B3 and C3:
esProc_date_time_function_35

FAVOR (0)
Leave a Reply
Cancel
Icon

Hi,You need to fill in the Username and Email!

  • Username (*)
  • Email (*)
  • Website